From 8b515e9340f9eb93c79b74d129b1fddfb8e5299a Mon Sep 17 00:00:00 2001 From: Kovarththanan Rajaratnam Date: Sun, 16 Aug 2009 12:36:22 +0000 Subject: Switch a bunch of dissectors over to using tvb_new_subset_remaining() svn path=/trunk/; revision=29446 --- epan/dissectors/packet-v5ua.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'epan/dissectors/packet-v5ua.c') diff --git a/epan/dissectors/packet-v5ua.c b/epan/dissectors/packet-v5ua.c index 252a97a659..38cf347841 100644 --- a/epan/dissectors/packet-v5ua.c +++ b/epan/dissectors/packet-v5ua.c @@ -1389,7 +1389,7 @@ dissect_v5ua_message(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, proto_ common_header_tvb = tvb_new_subset(tvb, COMMON_HEADER_OFFSET, COMMON_HEADER_LENGTH, COMMON_HEADER_LENGTH); dissect_common_header(common_header_tvb, pinfo, v5ua_tree); - parameters_tvb = tvb_new_subset(tvb, COMMON_HEADER_LENGTH, -1, -1); + parameters_tvb = tvb_new_subset_remaining(tvb, COMMON_HEADER_LENGTH); dissect_parameters(parameters_tvb, pinfo, tree, v5ua_tree); if (dlci_efa >= 0 && dlci_efa <= 8175) { if ((messageclassCopy == 0) || (messageclassCopy == 3) || (messageclassCopy == 4)) { -- cgit v1.2.3