Unused Value at packet-x224.c:111 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
dissect_x224_cr (/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-x224.c)![]() | ||||||
![]() | ||||||
99 | dissect_x224_cr(packet_info *pinfo _U_, proto_tree *tree, tvbuff_t *tvb, int offset, x224_conv_info_t *x224_info _U_) | |||||
100 | { | |||||
101 | guint8 class; | |||||
102 | ||||||
103 | /*DST-REF is always 0 */ | |||||
104 | offset+=2; | |||||
105 | ||||||
106 | /*SRC-REF*/ | |||||
107 | proto_tree_add_item(tree, hf_x224_src_ref, tvb, offset, 2, FALSE); | |||||
108 | offset+=2; | |||||
109 | ||||||
110 | /* class */ | |||||
111 | class = tvb_get_guint8(tvb, offset);
| |||||
112 | proto_tree_add_item(tree, hf_x224_class, tvb, offset, 1, FALSE); | |||||
113 | offset+=1; | |||||
114 | ||||||
115 | return offset; | |||||
116 | } | |||||
![]() |