Text   |  XML   |  ReML   |   Visible Warnings:

Dangerous Function Cast  at range_utils.c:415

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

range_new

(/home/sate/Testcases/c/cve/wireshark-1.2.0/gtk/range_utils.c)expand/collapse
Show more  
 405    /* Enable tooltips */
 406    tooltips = gtk_tooltips_new();
 407   
 408    /* range table */
 409    range_tb = gtk_table_new(7, 3, FALSE);
 410    gtk_container_set_border_width(GTK_CONTAINER(range_tb), 5);
 411   
 412    /* captured button */
 413    captured_bt = gtk_toggle_button_new_with_mnemonic("_Captured");
 414    gtk_table_attach_defaults(GTK_TABLE(range_tb), captured_bt, 1, 2, 0, 1);
 415    g_signal_connect(captured_bt, "toggled", G_CALLBACK(toggle_captured_cb), range_tb);
 416    gtk_tooltips_set_tip (tooltips,captured_bt,("Process all the below chosen packets"), NULL);
 417   
 418    /* displayed button */
 419    displayed_bt = gtk_toggle_button_new_with_mnemonic("_Displayed");
 420    gtk_table_attach_defaults(GTK_TABLE(range_tb), displayed_bt, 2, 3, 0, 1);
 421    g_signal_connect(displayed_bt, "toggled", G_CALLBACK(toggle_filtered_cb), range_tb);
 422    gtk_tooltips_set_tip (tooltips,displayed_bt,("Process only the below chosen packets, which also passes the current display filter"), NULL);
 423   
 424   
 425    /* Process all packets */
Show more  




Change Warning 517.28527 : Dangerous Function Cast

Priority:
State:
Finding:
Owner:
Note: