Don't bail out of a non-heuristic dissector routine just because there's

not enough captured data in the tvbuff.

svn path=/trunk/; revision=40977
This commit is contained in:
Guy Harris 2012-02-11 20:37:54 +00:00
parent 9f116d50cb
commit 357ab3c5f7
1 changed files with 0 additions and 3 deletions

View File

@ -151,9 +151,6 @@ dissect_mpeg_sect(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
tvbuff_t *pload_tvb = NULL;
if (tvb_length(tvb) < 3)
return;
table_id = tvb_get_guint8(tvb, offset);
header = tvb_get_ntohs(tvb, offset + 1);
syntax_indicator = header & MPEG_SECT_SYNTAX_INDICATOR_MASK;