Text   |  XML   |  ReML   |   Visible Warnings:

Dangerous Function Cast  at capture_file_dlg.c:494

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

file_open_cmd

(/home/sate/Testcases/c/cve/wireshark-1.2.0/gtk/capture_file_dlg.c)expand/collapse
Show more  
 483   
 484    /* filter row */
 485    filter_hbox = gtk_hbox_new(FALSE, 1);
 486    gtk_container_set_border_width(GTK_CONTAINER(filter_hbox), 0);
 487    gtk_box_pack_start(GTK_BOX(main_vb), filter_hbox, FALSE, FALSE, 0);
 488    gtk_widget_show(filter_hbox);
 489   
 490    filter_bt = gtk_button_new_from_stock(WIRESHARK_STOCK_DISPLAY_FILTER_ENTRY);
 491    g_signal_connect(filter_bt, "clicked",
 492                     G_CALLBACK(display_filter_construct_cb), &args);
 493    g_signal_connect(filter_bt, "destroy",
 494                     G_CALLBACK(filter_button_destroy_cb), NULL);
 495    gtk_box_pack_start(GTK_BOX(filter_hbox), filter_bt, FALSE, TRUE, 0);
 496    gtk_widget_show(filter_bt);
 497    gtk_tooltips_set_tip(tooltips, filter_bt,
 498      "Open the \"Display Filter\" dialog, to edit/apply filters", NULL);
 499   
 500    filter_te = gtk_entry_new();
 501    g_object_set_data(G_OBJECT(filter_bt), E_FILT_TE_PTR_KEY, filter_te);
 502    gtk_box_pack_start(GTK_BOX(filter_hbox), filter_te, TRUE, TRUE, 3);
 503    g_signal_connect(filter_te, "changed",
 504                     G_CALLBACK(filter_te_syntax_check_cb), NULL);
Show more  




Change Warning 114.27904 : Dangerous Function Cast

Priority:
State:
Finding:
Owner:
Note: