aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-umts_fp.c
diff options
context:
space:
mode:
authormartinm <martinm@f5534014-38df-0310-8fa8-9805f1628bb7>2010-08-04 14:42:09 +0000
committermartinm <martinm@f5534014-38df-0310-8fa8-9805f1628bb7>2010-08-04 14:42:09 +0000
commit707727356df4bd998777d63fe1a42912515ff7d5 (patch)
tree8b3913fe85dbcedf95fe3865deccfac9289cd440 /epan/dissectors/packet-umts_fp.c
parentebd26fd82ab49886f020e8c62b3929adfeecf310 (diff)
Update bit_offset whether calling MAC dissector or not.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33711 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-umts_fp.c')
-rw-r--r--epan/dissectors/packet-umts_fp.c2
1 files changed, 1 insertions, 1 deletions
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;