Unused Value at packet-mip6.c:450 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
dissect_fmip6_fna (/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-mip6.c)![]() | ||||||
![]() | ||||||
439 | dissect_fmip6_fna(tvbuff_t *tvb, proto_tree *mip6_tree, packet_info *pinfo) | |||||
440 | { | |||||
441 | proto_tree *data_tree = NULL; | |||||
442 | proto_item *ti; | |||||
443 | ||||||
444 | if (check_col(pinfo->cinfo, COL_INFO)) | |||||
445 | col_set_str(pinfo->cinfo, COL_INFO, "Fast Neighbor Advertisement"); | |||||
446 | ||||||
447 | if (mip6_tree) { | |||||
448 | ti = proto_tree_add_text(mip6_tree, tvb, MIP6_DATA_OFF, | |||||
449 | FMIP6_FNA_LEN, "Fast Neighbor Advertisement"); | |||||
450 | data_tree = proto_item_add_subtree(ti, ett_mip6);
| |||||
451 | } | |||||
452 | ||||||
453 | return MIP6_DATA_OFF + FMIP6_FNA_LEN; | |||||
454 | } | |||||
![]() |