Text   |  XML   |  ReML   |   Visible Warnings:

Dangerous Function Cast  at capture_dlg.c:2075

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  
 2065   
 2066    value = size_unit_option_menu_set_value(global_capture_opts.autostop_filesize);
 2067    gtk_adjustment_set_value(stop_filesize_adj, (gfloat) value);
 2068   
 2069    row++;
 2070   
 2071    /* Duration row */
 2072    stop_duration_cb = gtk_check_button_new_with_label("... after");
 2073    gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(stop_duration_cb),
 2074                  global_capture_opts.has_autostop_duration);
 2075    g_signal_connect(stop_duration_cb, "toggled", G_CALLBACK(capture_prep_adjust_sensitivity), cap_open_w);
 2076    gtk_tooltips_set_tip(tooltips, stop_duration_cb,
 2077      "Stop capturing after the given time is exceeded.", NULL);
 2078    gtk_table_attach_defaults(GTK_TABLE(limit_tb), stop_duration_cb, 0, 1, row, row+1);
 2079   
 2080    stop_duration_adj = (GtkAdjustment *) gtk_adjustment_new(0.0,
 2081      1, (gfloat)INT_MAX, 1.0, 10.0, 0.0);
 2082    stop_duration_sb = gtk_spin_button_new (stop_duration_adj, 0, 0);
 2083    gtk_spin_button_set_wrap (GTK_SPIN_BUTTON (stop_duration_sb), TRUE);
 2084    gtk_widget_set_size_request(stop_duration_sb, 80, -1);
 2085    gtk_table_attach_defaults(GTK_TABLE(limit_tb), stop_duration_sb, 1, 2, row, row+1);
Show more  




Change Warning 101.27882 : Dangerous Function Cast

Priority:
State:
Finding:
Owner:
Note: