Text   |  XML   |  ReML   |   Visible Warnings:

Ignored Return Value  at packet-h248_q1950.c:291

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

dissect_bt_tunneled_proto

(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-h248_q1950.c)expand/collapse
Show more  
 278  static void dissect_bt_tunneled_proto(proto_tree* tree, tvbuff_t* tvb, packet_info* pinfo, int hfid, h248_curr_info_t* i _U_, void* d _U_) {
 279          tvbuff_t* bctp_tvb = NULL;
 280          gint8 class;
 281          gboolean pc;
 282          gint32 tag;
 283          asn1_ctx_t asn1_ctx;
 284   
 285          asn1_ctx_init(&asn1_ctx, ASN1_ENC_BER, TRUE, pinfo);
 286           
 287          get_ber_identifier(tvb, 0, &class, &pc, &tag);
 288           
 289          /* XXX: is this enough to guess it? */
 290          if ((tag==BER_UNI_TAG_OCTETSTRING)) {
 291                  dissect_ber_octet_string(FALSE, &asn1_ctx, tree, tvb, 0, hfid, &bctp_tvb);
 292                   
 293                  if (bctp_tvb) {
 294                          call_dissector(bctp_dissector,bctp_tvb,pinfo,tree);
 295                  }
 296          } else {
 297                  proto_tree_add_item(tree,hfid,tvb,0,-1,FALSE);
 298          }
 299           
 300  }
Show more  




Change Warning 5249.35602 : Ignored Return Value

Priority:
State:
Finding:
Owner:
Note: