As per suggestion of Mike Morrin via

https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9406

The GSM CBCH assertion should be <= 48 not <48. Fixes one of the failing
assertions with the capture from that bug.

svn path=/trunk/; revision=53453
This commit is contained in:
Evan Huus 2013-11-20 22:34:36 +00:00
parent f7f4efabb8
commit 3b6573c2fb
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ dissect_schedule_message(tvbuff_t *tvb, packet_info *pinfo, proto_tree *top_tree
sched_subtree = proto_item_add_subtree(item, ett_schedule_new_msg);
for (i=0; i<k; i++)
{
DISSECTOR_ASSERT(new_slots[i] < 48);
DISSECTOR_ASSERT(new_slots[i] <= 48);
octet1 = tvb_get_guint8(tvb, offset);
if ((octet1 & 0x80) == 0x80)
{