Unused Value at packet-ansi_683.c:3216 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
msg_commit_rsp (/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-ansi_683.c)![]() | ||||||
![]() | ||||||
3196 | msg_commit_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset) | |||||
3197 | { | |||||
3198 | guint8 oct; | |||||
3199 | const gchar *str = NULL; | |||||
3200 | guint32 saved_offset; | |||||
3201 | ||||||
3202 | EXACT_DATA_CHECK(len, 1); | |||||
3203 | ||||||
3204 | saved_offset = offset; | |||||
3205 | ||||||
3206 | oct = tvb_get_guint8(tvb, offset); | |||||
3207 | ||||||
3208 | str = rev_res_code_type(oct); | |||||
3209 | ||||||
3210 | proto_tree_add_none_format(tree, hf_ansi_683_none, | |||||
3211 | tvb, offset, 1, | |||||
3212 | "Data commit result code, %s (%u)", | |||||
3213 | str, | |||||
3214 | oct); | |||||
3215 | ||||||
3216 | offset++;
| |||||
3217 | } | |||||
![]() |