From c0fcebb07a7246ba9c0dc565f3a8c32078d9bf0b Mon Sep 17 00:00:00 2001 From: Michael Mann Date: Thu, 31 Oct 2013 00:57:03 +0000 Subject: Add a data parameter to call_ber_oid_callback to be able to pass data to subdissectors found with dissector_try_string_new. The intention is to aid in the removal of pinfo->private_data use as well as static global variables in a dissector. For now, all calls to call_ber_oid_callback have the data parameter set to NULL. svn path=/trunk/; revision=52994 --- epan/dissectors/packet-atn-ulcs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'epan/dissectors/packet-atn-ulcs.c') diff --git a/epan/dissectors/packet-atn-ulcs.c b/epan/dissectors/packet-atn-ulcs.c index 885dbe5737..dcc972c42f 100644 --- a/epan/dissectors/packet-atn-ulcs.c +++ b/epan/dissectors/packet-atn-ulcs.c @@ -1004,7 +1004,7 @@ dissect_atn_ulcs_T_other_mechanism_value(tvbuff_t *tvb _U_, int offset _U_, asn1 tvb, offset, actx->pinfo, - tree); + tree, NULL); offset=call_ber_oid_callback( @@ -1012,7 +1012,7 @@ dissect_atn_ulcs_T_other_mechanism_value(tvbuff_t *tvb _U_, int offset _U_, asn1 tvb, offset, actx->pinfo, - tree); + tree, NULL); return offset; -- cgit v1.2.3