Unused Value at packet-rrc.c:99354 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
dissect_rrc (/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-rrc.c)![]() | ||||||
![]() | ||||||
99338 | dissect_rrc(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) | |||||
99339 | { | |||||
99340 | /* FIX ME Currently don't know the 'starting point' of this protocol | |||||
99341 | * exported DL-DCCH-Message is the entry point. | |||||
99342 | */ | |||||
99343 | proto_item *rrc_item = NULL; | |||||
99344 | proto_tree *rrc_tree = NULL; | |||||
99345 | ||||||
99346 | top_tree = tree; | |||||
99347 | ||||||
99348 | /* make entry in the Protocol column on summary display */ | |||||
99349 | if (check_col(pinfo->cinfo, COL_PROTOCOL)) | |||||
99350 | col_set_str(pinfo->cinfo, COL_PROTOCOL, "RRC"); | |||||
99351 | ||||||
99352 | /* create the rrc protocol tree */ | |||||
99353 | rrc_item = proto_tree_add_item(tree, proto_rrc, tvb, 0, -1, FALSE); | |||||
99354 | rrc_tree = proto_item_add_subtree(rrc_item, ett_rrc);
| |||||
99355 | ||||||
99356 | } | |||||
![]() |