Text   |  XML   |  ReML   |   Visible Warnings:

Dangerous Function Cast  at flow_graph.c:572

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

flow_graph_dlg_create

(/home/sate/Testcases/c/cve/wireshark-1.2.0/gtk/flow_graph.c)expand/collapse
Show more  
 562          gtk_box_pack_start(GTK_BOX(main_vb), node_addr_fr, FALSE, FALSE, 5);
 563   
 564          node_addr_tb = gtk_table_new(4, 4, FALSE);
 565          gtk_container_set_border_width(GTK_CONTAINER(node_addr_tb), 5);
 566          gtk_container_add(GTK_CONTAINER(node_addr_fr), node_addr_tb);
 567   
 568          /* Source / Dest address */
 569          src_dst_rb = gtk_radio_button_new_with_mnemonic_from_widget(NULL, "_Standard source/destination addresses");
 570          gtk_tooltips_set_tip (tooltips, src_dst_rb,
 571                  ("Nodes in the diagram are identified with source and destination addresses"), NULL);
 572          g_signal_connect(src_dst_rb, "toggled", G_CALLBACK(toggle_select_srcdst), NULL);
 573          gtk_table_attach_defaults(GTK_TABLE(node_addr_tb), src_dst_rb, 0, 1, 0, 1);
 574          if (node_addr_type == SRCDST) {
 575                  gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(src_dst_rb),TRUE);
 576          }
 577          gtk_widget_show(src_dst_rb);
 578   
 579          /* Network source / dest address */
 580          net_src_dst_rb = gtk_radio_button_new_with_mnemonic_from_widget(GTK_RADIO_BUTTON(src_dst_rb), "_Network source/destination addresses");
 581          gtk_tooltips_set_tip (tooltips, net_src_dst_rb,
 582                  ("Nodes in the diagram are identified with network source and destination addresses"), NULL);
Show more  




Change Warning 633.28816 : Dangerous Function Cast

Priority:
State:
Finding:
Owner:
Note: