Text   |  XML   |  ReML   |   Visible Warnings:

Dangerous Function Cast  at capture_dlg.c:1907

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

capture_prep_cb

(/home/sate/Testcases/c/cve/wireshark-1.2.0/gtk/capture_dlg.c)expand/collapse
Show more  
 1896    multi_tb = gtk_table_new(5, 3, FALSE);
 1897    gtk_table_set_row_spacings(GTK_TABLE(multi_tb), 1);
 1898    gtk_table_set_col_spacings(GTK_TABLE(multi_tb), 3);
 1899    gtk_box_pack_start(GTK_BOX(file_vb), multi_tb, FALSE, FALSE, 0);
 1900    row = 0;
 1901   
 1902    /* multiple files row */
 1903    multi_files_on_cb = gtk_check_button_new_with_mnemonic("Use _multiple files");
 1904    gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(multi_files_on_cb),
 1905                  global_capture_opts.multi_files_on);
 1906    g_signal_connect(multi_files_on_cb, "toggled", G_CALLBACK(capture_prep_adjust_sensitivity),
 1907                   cap_open_w);
 1908    gtk_tooltips_set_tip(tooltips, multi_files_on_cb,
 1909      "Instead of using a single capture file, multiple files will be created. "
 1910      "The generated file names will contain an incrementing number and the start time of the capture.", NULL);
 1911    gtk_table_attach_defaults(GTK_TABLE(multi_tb), multi_files_on_cb, 0, 1, row, row+1);
 1912    row++;
 1913   
 1914    /* Ring buffer filesize row */
 1915    ring_filesize_cb = gtk_check_button_new_with_label("Next file every");
 1916    gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(ring_filesize_cb),
 1917                  global_capture_opts.has_autostop_filesize || !global_capture_opts.has_file_duration);
Show more  




Change Warning 109.27890 : Dangerous Function Cast

Priority:
State:
Finding:
Owner:
Note: