Text   |  XML   |  ReML   |   Visible Warnings:

Dangerous Function Cast  at decode_as_dlg.c:1008

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

decode_add_yes_no

(/home/sate/Testcases/c/cve/wireshark-1.2.0/gtk/decode_as_dlg.c)expand/collapse
Show more  
 997   
 998      radio_button = gtk_radio_button_new_with_label(NULL, "Decode");
 999      format_grp = gtk_radio_button_get_group(GTK_RADIO_BUTTON(radio_button));
 1000      gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(radio_button), TRUE);
 1001      g_signal_connect(radio_button, "clicked", G_CALLBACK(decode_update_action),
 1002                     GINT_TO_POINTER(E_DECODE_YES));
 1003      gtk_box_pack_start(GTK_BOX(format_vb), radio_button, TRUE, TRUE, 0);
 1004   
 1005      radio_button = gtk_radio_button_new_with_label(format_grp, "Do not decode");
 1006      format_grp = gtk_radio_button_get_group(GTK_RADIO_BUTTON(radio_button));
 1007      g_signal_connect(radio_button, "clicked", G_CALLBACK(decode_update_action),
 1008                     GINT_TO_POINTER(E_DECODE_NO));
 1009      gtk_box_pack_start(GTK_BOX(format_vb), radio_button, TRUE, TRUE, 0);
 1010   
 1011      return(format_vb);
 1012  }
 1013   
 1014  /**************************************************/
 1015  /*          Dialog setup - simple menus           */
 1016  /**************************************************/
 1017   
 1018  /*
Show more  




Change Warning 192.28021 : Dangerous Function Cast

Priority:
State:
Finding:
Owner:
Note: