Text   |  XML   |  ReML   |   Visible Warnings:

Dangerous Function Cast  at print_dlg.c:698

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

open_print_dialog

(/home/sate/Testcases/c/cve/wireshark-1.2.0/gtk/print_dlg.c)expand/collapse
Show more  
 688    gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(summary_cb), args->print_summary);
 689    g_signal_connect(summary_cb, "clicked", G_CALLBACK(print_cmd_toggle_detail), main_win);
 690    gtk_tooltips_set_tip (tooltips, summary_cb, "Output of a packet summary line, like in the packet list", NULL);
 691    gtk_container_add(GTK_CONTAINER(format_vb), summary_cb);
 692    gtk_widget_show(summary_cb);
 693   
 694   
 695    /* "Details" check button */
 696    details_cb = gtk_check_button_new_with_mnemonic("Packet details:");
 697    gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(details_cb), args->print_dissections != print_dissections_none);
 698    g_signal_connect(details_cb, "clicked", G_CALLBACK(print_cmd_toggle_detail), main_win);
 699    gtk_tooltips_set_tip (tooltips, details_cb, "Output format of the selected packet details (protocol tree).", NULL);
 700    gtk_container_add(GTK_CONTAINER(format_vb), details_cb);
 701    gtk_widget_show(details_cb);
 702   
 703    /*** packet details ***/
 704    details_hb = gtk_hbox_new(FALSE, 6);
 705    gtk_container_set_border_width(GTK_CONTAINER(details_hb), 0);
 706    gtk_container_add(GTK_CONTAINER(format_vb), details_hb);
 707    gtk_widget_show(details_hb);
 708   
Show more  




Change Warning 481.28482 : Dangerous Function Cast

Priority:
State:
Finding:
Owner:
Note: