Dangerous Function Cast at print_dlg.c:413 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
export_csv_cmd_cb (/home/sate/Testcases/c/cve/wireshark-1.2.0/gtk/print_dlg.c)![]() | ||||||
![]() | ||||||
403 | args->print_summary = FALSE; | |||||
404 | args->print_dissections = print_dissections_none; | |||||
405 | args->print_hex = FALSE; | |||||
406 | args->print_formfeed = FALSE; | |||||
407 | } | |||||
408 | ||||||
409 | /* init the printing range */ | |||||
410 | packet_range_init(&args->range); | |||||
411 | ||||||
412 | export_csv_win = open_print_dialog("Wireshark: Export as \"Comma Separated Values\" File", output_action_export_csv, args); | |||||
413 | g_signal_connect(export_csv_win, "destroy", G_CALLBACK(print_destroy_cb), &export_csv_win);
| |||||
414 | } | |||||
415 | ||||||
416 | /* | |||||
417 | * Keep a static pointer to the current "Export carrays" window, if any, so that if | |||||
418 | * somebody tries to do "File:Export to carrays" while there's already a "Export carrays" window | |||||
419 | * up, we just pop up the existing one, rather than creating a new one. | |||||
420 | */ | |||||
421 | static GtkWidget *export_carrays_win = NULL; | |||||
422 | ||||||
423 | static print_args_t export_carrays_args; | |||||
![]() |