Text   |  XML   |  ReML   |   Visible Warnings:

Dangerous Function Cast  at filter_autocomplete.c:745

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

filter_autocomplete_new

(/home/sate/Testcases/c/cve/wireshark-1.2.0/gtk/filter_autocomplete.c)expand/collapse
Show more  
 735      return NULL;
 736    }
 737   
 738    /* Sort treeview */
 739    model = gtk_tree_view_get_model(GTK_TREE_VIEW(treeview));
 740    if(model)
 741      filter_autocomplete_enable_sorting(model);
 742   
 743    gtk_container_add (GTK_CONTAINER (filter_sc), treeview);
 744   
 745    g_signal_connect(treeview, "row-activated", G_CALLBACK(autoc_filter_row_activated_cb), filter_te);
 746    g_signal_connect(filter_te, "focus-out-event", G_CALLBACK(filter_te_focus_out_cb), w_toplevel);
 747    g_signal_connect(popup_win, "destroy", G_CALLBACK(filter_autocomplete_win_destroy_cb), NULL);
 748   
 749    gtk_widget_size_request(treeview, &requisition);
 750   
 751    gtk_widget_set_size_request(popup_win, filter_te->allocation.width, (requisition.height<200? requisition.height+8:200));
 752    gtk_window_resize(GTK_WINDOW(popup_win), filter_te->allocation.width, (requisition.height<200? requisition.height+8:200));
 753   
 754    gtk_window_get_position(GTK_WINDOW(w_toplevel), &x_pos, &y_pos);  
 755    x_pos = x_pos + filter_te->allocation.x;
Show more  




Change Warning 226.28077 : Dangerous Function Cast

Priority:
State:
Finding:
Owner:
Note: