Text   |  XML   |  ReML   |   Visible Warnings:

Dangerous Function Cast  at graph_analysis.c:1529

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

dialog_graph_create_window

(/home/sate/Testcases/c/cve/wireshark-1.2.0/gtk/graph_analysis.c)expand/collapse
Show more  
 1519          g_signal_connect(bt_save, "clicked", G_CALLBACK(on_save_bt_clicked), user_data);
 1520          gtk_tooltips_set_tip (tooltips, bt_save, "Save an ASCII representation of the graph to a file", NULL);
 1521   
 1522          bt_close = gtk_button_new_from_stock(GTK_STOCK_CLOSE);
 1523          gtk_container_add (GTK_CONTAINER (hbuttonbox), bt_close);
 1524          GTK_WIDGET_SET_FLAGS(bt_close, GTK_CAN_DEFAULT);
 1525          gtk_widget_show(bt_close);
 1526          gtk_tooltips_set_tip (tooltips, bt_close, "Close this dialog", NULL);
 1527          window_set_cancel_button(user_data->dlg.window, bt_close, window_cancel_button_cb);
 1528   
 1529          g_signal_connect(user_data->dlg.window, "delete_event", G_CALLBACK(window_delete_event_cb), NULL);
 1530          g_signal_connect(user_data->dlg.window, "destroy", G_CALLBACK(on_destroy), user_data);
 1531   
 1532          gtk_widget_show(user_data->dlg.window);
 1533          window_present(user_data->dlg.window);
 1534   
 1535          /* Destroy our graph window with our parent if the caller specified the parent */
 1536          if(user_data->dlg.parent_w) {
 1537                  gtk_window_set_transient_for(GTK_WINDOW(user_data->dlg.window),
 1538                                               GTK_WINDOW(user_data->dlg.parent_w));
 1539                  /* Destruction of this child window */
Show more  




Change Warning 312.28236 : Dangerous Function Cast

Priority:
State:
Finding:
Owner:
Note: