(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-extreme.c) |
| |
| 438 | | | dissect_null_tlv(tvbuff_t *tvb, packet_info *pinfo, int offset, int length _U_, proto_tree *tree) |
| 439 | | | { |
| 440 | | | proto_item *null_item; |
| 441 | | | proto_tree *null_tree; |
| 442 | | | |
| 443 | | | null_item = proto_tree_add_protocol_format(tree, hf_edp_null, |
| 444 | | | tvb, offset, length, "Null"); |
| 445 | | | |
| 446 | | | null_tree = proto_item_add_subtree(null_item, ett_edp_null); |
| 447 | | | |
| 448 | | | (tvb, pinfo, offset, 4, null_tree); |
| 449 | | | offset += 4; |
Unused Value
The value assigned to offset is never subsequently used on any execution path. |
|
| 450 | | | } |
| |