Unused Value at packet-agentx.c:683 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
dissect_ping_pdu (/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-agentx.c)![]() | ||||||
![]() | ||||||
673 | static void dissect_ping_pdu(tvbuff_t *tvb, proto_tree *tree,int offset,int len, char flags) | |||||
674 | { | |||||
675 | proto_item* item; | |||||
676 | proto_tree* subtree; | |||||
677 | ||||||
678 | item = proto_tree_add_text(tree, tvb, offset, len, "Ping-PDU"); | |||||
679 | subtree = proto_item_add_subtree(item, ett_ping); | |||||
680 | ||||||
681 | if(flags & NON_DEFAULT_CONTEXT) { | |||||
682 | /* show context */ | |||||
683 | offset += dissect_octet_string(tvb, subtree, offset, flags);
| |||||
684 | } | |||||
685 | } | |||||
![]() |