Unused Value at packet-bssgp.c:2954 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
proto_tree_add_lsa_id (/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-bssgp.c)![]() | ||||||
![]() | ||||||
2947 | proto_tree_add_lsa_id(build_info_t *bi, proto_tree *tree) { | |||||
2948 | guint32 data, lsa_id; | |||||
2949 | proto_item *pi; | |||||
2950 | ||||||
2951 | data = tvb_get_ntoh24(bi->tvb, bi->offset); | |||||
2952 | lsa_id = data >> 1; | |||||
2953 | ||||||
2954 | pi = proto_tree_add_text(tree, bi->tvb, bi->offset, 3,
| |||||
2955 | "LSA ID: %#03x (%s)", lsa_id, | |||||
2956 | data & 1 ? | |||||
2957 | "Universal LSA" : "PLMN significant number"); | |||||
2958 | bi->offset += 3; | |||||
2959 | } | |||||
![]() |