Text   |  XML   |  ReML   |   Visible Warnings:

Dangerous Function Cast  at io_stat.c:1472

No properties have been set. | edit properties
Jump to warning location ↓ warning details...
Show Events | Options

create_draw_area

(/home/sate/Testcases/c/cve/wireshark-1.2.0/gtk/io_stat.c)expand/collapse
Show more  
 1462                          event->area.width, event->area.height);
 1463   
 1464          return FALSE;
 1465  }
 1466   
 1467   
 1468  static void
 1469  create_draw_area(io_stat_t *io, GtkWidget *box)
 1470  {
 1471          io->draw_area=gtk_drawing_area_new();
 1472          g_signal_connect(io->draw_area, "destroy", G_CALLBACK(quit), io);
 1473          g_object_set_data(G_OBJECT(io->draw_area), "io_stat_t", io);
 1474   
 1475          gtk_widget_set_size_request(io->draw_area, io->pixmap_width, io->pixmap_height);
 1476   
 1477          /* signals needed to handle backing pixmap */
 1478          g_signal_connect(io->draw_area, "expose_event", G_CALLBACK(expose_event), NULL);
 1479          g_signal_connect(io->draw_area, "configure_event", G_CALLBACK(configure_event), io);
 1480          gtk_widget_add_events (io->draw_area, GDK_BUTTON_PRESS_MASK);
 1481          g_signal_connect(io->draw_area, "button-press-event", G_CALLBACK(pixmap_clicked_event), NULL);
 1482   
Show more  




Change Warning 683.28955 : Dangerous Function Cast

Priority:
State:
Finding:
Owner:
Note: