BGP: Fix (reader_)offset for IGMP

fix typo (offset => reader_offset)

Close #18660
This commit is contained in:
Alexis La Goutte 2022-11-21 15:12:37 +00:00 committed by Uli Heilmeier
parent fdc211984f
commit 6dcfb07b7d
1 changed files with 2 additions and 2 deletions

View File

@ -6621,11 +6621,11 @@ static int decode_evpn_nlri(proto_tree *tree, tvbuff_t *tvb, gint offset, packet
case 128:
proto_tree_add_item(prefix_tree, hf_bgp_evpn_nlri_igmp_mc_or_addr_ipv6, tvb,
reader_offset, 16, ENC_NA);
offset += 16;
reader_offset += 16;
break;
}
if (reader_offset - start_offset < nlri_len) {
proto_tree_add_bitmask(prefix_tree, tvb, offset, hf_bgp_evpn_nlri_igmp_mc_flags,
proto_tree_add_bitmask(prefix_tree, tvb, reader_offset, hf_bgp_evpn_nlri_igmp_mc_flags,
ett_bgp_evpn_nlri_mc, evpn_nlri_igmp_mc_flags, ENC_BIG_ENDIAN);
reader_offset += 1;
}