Text   |  XML   |  ReML   |   Visible Warnings:

Dangerous Function Cast  at capture_if_dlg.c:585

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

capture_if_cb

(/home/sate/Testcases/c/cve/wireshark-1.2.0/gtk/capture_if_dlg.c)expand/collapse
Show more  
 575    gtk_table_attach_defaults(GTK_TABLE(if_tb), if_lb, 5, 6, row, row+1);
 576   
 577    stop_bt = gtk_button_new_from_stock(WIRESHARK_STOCK_CAPTURE_STOP);
 578    gtk_tooltips_set_tip(tooltips, stop_bt,
 579            "Stop a running capture.", NULL);
 580  #ifdef _WIN32 
 581    gtk_table_attach_defaults(GTK_TABLE(if_tb), stop_bt, 6, 9, row, row+1);
 582  #else
 583    gtk_table_attach_defaults(GTK_TABLE(if_tb), stop_bt, 6, 8, row, row+1);
 584  #endif
 585    g_signal_connect(stop_bt, "clicked", G_CALLBACK(capture_stop_cb), NULL);
 586   
 587    row++;
 588    gtk_widget_size_request(stop_bt, &requisition);
 589    height += requisition.height + 15;
 590   
 591    /* Start gathering statistics (using dumpcap) */
 592    sc = capture_stat_start(if_list);
 593   
 594    /* List the interfaces */
 595    for(ifs = 0; (curr = g_list_nth(if_list, ifs)); ifs++) {
Show more  




Change Warning 139.27935 : Dangerous Function Cast

Priority:
State:
Finding:
Owner:
Note: