Text   |  XML   |  ReML   |   Visible Warnings:

Dangerous Function Cast  at main_filter_toolbar.c:111

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

filter_toolbar_new

(/home/sate/Testcases/c/cve/wireshark-1.2.0/gtk/main_filter_toolbar.c)expand/collapse
Show more  
 101      tooltips = gtk_tooltips_new();
 102   
 103      /* filter toolbar */
 104      filter_tb = gtk_toolbar_new();
 105      gtk_toolbar_set_orientation(GTK_TOOLBAR(filter_tb),
 106                                  GTK_ORIENTATION_HORIZONTAL);
 107      gtk_widget_show(filter_tb);
 108   
 109      /* Create the "Filter:" button */
 110      filter_bt = gtk_button_new_from_stock(WIRESHARK_STOCK_DISPLAY_FILTER_ENTRY);
 111      g_signal_connect(filter_bt, "clicked", G_CALLBACK(display_filter_construct_cb), &args);
 112      gtk_widget_show(filter_bt);
 113      g_object_set_data(G_OBJECT(top_level), E_FILT_BT_PTR_KEY, filter_bt);
 114   
 115      gtk_toolbar_append_widget(GTK_TOOLBAR(filter_tb), filter_bt,
 116          "Open the \"Display Filter\" dialog, to edit/apply filters", "Private");
 117   
 118      /* Create the filter combobox */
 119      filter_cm = gtk_combo_new();
 120      dfilter_list = NULL;
 121      gtk_combo_disable_activate(GTK_COMBO(filter_cm));
Show more  




Change Warning 341.28293 : Dangerous Function Cast

Priority:
State:
Finding:
Owner:
Note: