From de77acf87573bf2b3da9288e5972571e485c7549 Mon Sep 17 00:00:00 2001 From: Ulf Lamping Date: Sun, 27 Mar 2005 01:02:29 +0000 Subject: [PATCH] buildbot bugfix: add another tvb_ensure_bytes_exist (tvb,offset,length); svn path=/trunk/; revision=13927 --- epan/dissectors/packet-ppp.c | 1 + 1 file changed, 1 insertion(+) 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);