Text   |  XML   |  ReML   |   Visible Warnings:

Dangerous Function Cast  at hostlist_table.c:918

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

init_hostlist_table

(/home/sate/Testcases/c/cve/wireshark-1.2.0/gtk/hostlist_table.c)expand/collapse
Show more  
 908   
 909      gtk_box_pack_end(GTK_BOX(vbox), bbox, FALSE, FALSE, 0);
 910   
 911      close_bt = g_object_get_data(G_OBJECT(bbox), GTK_STOCK_CLOSE);
 912      window_set_cancel_button(hosttable->win, close_bt, window_cancel_button_cb);
 913   
 914      copy_bt = g_object_get_data(G_OBJECT(bbox), GTK_STOCK_COPY);
 915      gtk_tooltips_set_tip(tooltips, copy_bt,
 916                           "Copy all statistical values of this page to the clipboard in CSV (Comma Separated Values) format.", NULL);
 917      g_object_set_data(G_OBJECT(copy_bt), HOST_PTR_KEY, hosttable);
 918      g_signal_connect(copy_bt, "clicked", G_CALLBACK(copy_as_csv_cb), NULL);
 919   
 920  #ifdef HAVE_GEOIP 
 921      map_bt = g_object_get_data(G_OBJECT(bbox), WIRESHARK_STOCK_MAP);
 922      if(map_bt != NULL) {
 923          gtk_tooltips_set_tip(tooltips, map_bt,
 924                               "Show a map of the IP addresses (internet connection required).", NULL);
 925          g_object_set_data(G_OBJECT(map_bt), HOST_PTR_KEY, hosttable);
 926          g_signal_connect(map_bt, "clicked", G_CALLBACK(open_as_map_cb), NULL);
 927      }
 928  #endif /* HAVE_GEOIP */
Show more  




Change Warning 325.28267 : Dangerous Function Cast

Priority:
State:
Finding:
Owner:
Note: