aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-03-27 01:02:29 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-03-27 01:02:29 +0000
commitde77acf87573bf2b3da9288e5972571e485c7549 (patch)
treec98d6a5077c283d6dedd60857c8acc809e999e8e /epan
parent6cacd26f20cd0e8d32924b5db7ac1534ada0179d (diff)
buildbot bugfix: add another tvb_ensure_bytes_exist (tvb,offset,length);
svn path=/trunk/; revision=13927
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-ppp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/dissectors/packet-ppp.c b/epan/dissectors/packet-ppp.c
index b30ad04784..ae909f01c1 100644
--- a/epan/dissectors/packet-ppp.c
+++ b/epan/dissectors/packet-ppp.c
@@ -3012,6 +3012,7 @@ dissect_pppmux(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
length_remaining -= hdr_length;
length -= pid_field;
+ tvb_ensure_bytes_exist (tvb,offset,length);
sub_ti = proto_tree_add_text(sub_tree,tvb,offset,length,"Information Field");
info_tree = proto_item_add_subtree(sub_ti,ett_pppmux_subframe_info);