Text   |  XML   |  ReML   |   Visible Warnings:

Ignored Return Value  at packet-h264.c:2059

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

proto_reg_handoff_h264

(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-h264.c)expand/collapse
Show more  
 2046  proto_reg_handoff_h264(void)
 2047  {
 2048          static dissector_handle_t h264_handle;
 2049          static guint dynamic_payload_type;
 2050          static gboolean h264_prefs_initialized = FALSE;
 2051   
 2052          if (!h264_prefs_initialized) {
 2053                  dissector_handle_t h264_name_handle;
 2054                  h264_capability_t *ftr;
 2055   
 2056                  h264_handle = find_dissector("h264");
 2057                  dissector_add_string("rtp_dyn_payload_type","H264", h264_handle);
 2058   
 2059                  h264_name_handle = create_dissector_handle(dissect_h264_name, proto_h264);
 2060                  for (ftr=h264_capability_tab; ftr->id; ftr++) {
 2061                      if (ftr->name)  
 2062                                  dissector_add_string("h245.gef.name", ftr->id, h264_name_handle);
 2063                          if (ftr->content_pdu)
 2064                                  dissector_add_string("h245.gef.content", ftr->id, new_create_dissector_handle(ftr->content_pdu, proto_h264));
 2065                  }
 2066                  h264_prefs_initialized = TRUE;
 2067          } else {
 2068                  if ( dynamic_payload_type > 95 )
 2069                          dissector_delete("rtp.pt", dynamic_payload_type, h264_handle);
 2070          }
 2071   
 2072          dynamic_payload_type = temp_dynamic_payload_type;
 2073          if ( dynamic_payload_type > 95 ){
 2074                  dissector_add("rtp.pt", dynamic_payload_type, h264_handle);
 2075          }
 2076  }
Show more  




Change Warning 5452.35675 : Ignored Return Value

Priority:
State:
Finding:
Owner:
Note: