From Michael Lum:

EVRC packet bundling not handled correctly.
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4718

svn path=/trunk/; revision=32582
This commit is contained in:
Anders Broman 2010-04-28 04:54:25 +00:00
parent d99e90b2e2
commit 863b392200
1 changed files with 2 additions and 2 deletions

View File

@ -318,7 +318,7 @@ dissect_evrc_aux(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, evrc_varia
i++;
if ((frame_count & 0x01) == 0)
if (i < frame_count)
{
/* even number of frames */
proto_tree_add_item(toc_tree, hf_toc_frame_type_low, tvb, offset, 1, FALSE);
@ -337,7 +337,7 @@ dissect_evrc_aux(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, evrc_varia
proto_tree_add_item(toc_tree, hf_evrc_padding, tvb, offset-1, 1, FALSE);
}
proto_item_set_len(item, (offset - 1) - saved_offset);
proto_item_set_len(item, offset - saved_offset);
}
i = 0;