Text   |  XML   |  ReML   |   Visible Warnings:

Redundant Condition  at packet-isakmp.c:2849

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

dissect_eap

(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-isakmp.c)expand/collapse
Show more  
 2843  dissect_eap(tvbuff_t *tvb, int offset, int length, proto_tree *tree,
 2844      proto_tree *p _U_, packet_info *pinfo _U_, int isakmp_version _U_, int unused _U_, guint8 inner_payload _U_)
 2845  {
 2846    tvbuff_t *eap_tvb = NULL;
 2847   
 2848    eap_tvb = tvb_new_subset(tvb, offset,length, length );
 2849    if ((eap_tvb != NULL)&& eap_handle != NULL){
 2850            call_dissector(eap_handle, eap_tvb, pinfo, tree);
 2851    }else{
 2852            proto_tree_add_text(tree, tvb, offset, length, "EAP Message");
 2853    }
 2854  }
Show more  




Change Warning 1221.31157 : Redundant Condition

Priority:
State:
Finding:
Owner:
Note: