From b91b0515cc430b21af9bd3b4badf300c0b0a22f9 Mon Sep 17 00:00:00 2001 From: Martin Mathieson Date: Wed, 4 Aug 2010 14:42:09 +0000 Subject: [PATCH] Update bit_offset whether calling MAC dissector or not. svn path=/trunk/; revision=33711 --- epan/dissectors/packet-umts_fp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epan/dissectors/packet-umts_fp.c b/epan/dissectors/packet-umts_fp.c index c4f108039a..30ad1d3a38 100644 --- a/epan/dissectors/packet-umts_fp.c +++ b/epan/dissectors/packet-umts_fp.c @@ -2456,9 +2456,9 @@ static void dissect_e_dch_channel_info(tvbuff_t *tvb, packet_info *pinfo, proto_ next_tvb = tvb_new_subset(tvb, offset + bit_offset/8, ((bit_offset % 8) + size + 7) / 8, -1); call_dissector(mac_fdd_edch_handle, next_tvb, pinfo, top_level_tree); - bit_offset += size; dissected = TRUE; } + bit_offset += size; } bits_in_subframe += send_size;