Unused Value at packet-mip6.c:141 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
dissect_mip6_brr (/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-mip6.c)![]() | ||||||
![]() | ||||||
130 | dissect_mip6_brr(tvbuff_t *tvb, proto_tree *mip6_tree, packet_info *pinfo) | |||||
131 | { | |||||
132 | proto_tree *data_tree = NULL; | |||||
133 | proto_item *ti; | |||||
134 | ||||||
135 | if (check_col(pinfo->cinfo, COL_INFO)) | |||||
136 | col_set_str(pinfo->cinfo, COL_INFO, "Binding Refresh Request"); | |||||
137 | ||||||
138 | if (mip6_tree) { | |||||
139 | ti = proto_tree_add_text(mip6_tree, tvb, MIP6_DATA_OFF, | |||||
140 | MIP6_BRR_LEN, "Binding Refresh Request"); | |||||
141 | data_tree = proto_item_add_subtree(ti, ett_mip6);
| |||||
142 | } | |||||
143 | ||||||
144 | return MIP6_DATA_OFF + MIP6_BRR_LEN; | |||||
145 | } | |||||
![]() |