Text   |  XML   |  ReML   |   Visible Warnings:

Dangerous Function Cast  at print_dlg.c:689

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  
 679          action == output_action_export_ps)
 680      gtk_widget_show(format_fr);
 681    format_vb = gtk_vbox_new(FALSE, 5);
 682    gtk_container_set_border_width(GTK_CONTAINER(format_vb), 5);
 683    gtk_container_add(GTK_CONTAINER(format_fr), format_vb);
 684    gtk_widget_show(format_vb);
 685   
 686    /* "Print summary line" check button */
 687    summary_cb = gtk_check_button_new_with_mnemonic("Packet summary line");
 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);
Show more  




Change Warning 482.28484 : Dangerous Function Cast

Priority:
State:
Finding:
Owner:
Note: