Text   |  XML   |  ReML   |   Visible Warnings:

Dangerous Function Cast  at filter_dlg.c:563

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

filter_dialog_new

(/home/sate/Testcases/c/cve/wireshark-1.2.0/gtk/filter_dlg.c)expand/collapse
Show more  
 553      if (list_type == DFILTER_EDITED_LIST) {
 554          gtk_tooltips_set_tip(tooltips, filter_te,
 555              "Enter a display filter. "
 556              "The background color of this field is changed by a continuous syntax check"
 557                " (green is valid, red is invalid, yellow may have unexpected results).",
 558              NULL);
 559   
 560          /* Create the "Add Expression..." button, to pop up a dialog 
 561             for constructing filter comparison expressions. */
 562          add_expression_bt = gtk_button_new_from_stock(WIRESHARK_STOCK_ADD_EXPRESSION);
 563          g_signal_connect(add_expression_bt, "clicked", G_CALLBACK(filter_add_expr_bt_cb), main_w);
 564          gtk_box_pack_start(GTK_BOX(bottom_hb), add_expression_bt, FALSE, FALSE, 0);
 565          gtk_widget_show(add_expression_bt);
 566          gtk_tooltips_set_tip (tooltips, add_expression_bt, ("Add an expression to the filter string"), NULL);
 567      }
 568   
 569   
 570      /* button row (create all possible buttons and hide the unrequired later - it's a lot easier) */
 571      bbox = dlg_button_row_new(GTK_STOCK_OK, GTK_STOCK_APPLY, GTK_STOCK_SAVE, GTK_STOCK_CANCEL, GTK_STOCK_HELP, NULL);
 572      gtk_box_pack_start(GTK_BOX(main_vb), bbox, FALSE, FALSE, 5);
 573      gtk_widget_show(bbox);
Show more  




Change Warning 245.28111 : Dangerous Function Cast

Priority:
State:
Finding:
Owner:
Note: