Text   |  XML   |  ReML   |   Visible Warnings:

Dangerous Function Cast  at goto_dlg.c:82

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

goto_frame_cb

(/home/sate/Testcases/c/cve/wireshark-1.2.0/gtk/goto_dlg.c)expand/collapse
Show more  
 72    fnumber_te = gtk_entry_new();
 73    gtk_box_pack_start(GTK_BOX(fnumber_hb), fnumber_te, FALSE, FALSE, 0);
 74    gtk_widget_show(fnumber_te);
 75   
 76    /* Button row: OK and cancel buttons */
 77    bbox = dlg_button_row_new(GTK_STOCK_JUMP_TO, GTK_STOCK_CANCEL, GTK_STOCK_HELP, NULL);
 78    gtk_container_add(GTK_CONTAINER(main_vb), bbox);
 79    gtk_widget_show(bbox);
 80   
 81    ok_bt = g_object_get_data(G_OBJECT(bbox), GTK_STOCK_JUMP_TO);
 82    g_signal_connect(ok_bt, "clicked", G_CALLBACK(goto_frame_ok_cb), goto_frame_w);
 83   
 84    cancel_bt = g_object_get_data(G_OBJECT(bbox), GTK_STOCK_CANCEL);
 85    window_set_cancel_button(goto_frame_w, cancel_bt, window_cancel_button_cb);
 86   
 87    help_bt = g_object_get_data(G_OBJECT(bbox), GTK_STOCK_HELP);
 88    g_signal_connect(help_bt, "clicked", G_CALLBACK(topic_cb), (gpointer)HELP_GOTO_DIALOG);
 89   
 90    gtk_widget_grab_default(ok_bt);
 91   
 92    /* Catch the "activate" signal on the frame number text entry, so that
Show more  




Change Warning 296.28204 : Dangerous Function Cast

Priority:
State:
Finding:
Owner:
Note: