From 7945bf1bc9926fb7eab8cb0f66e2a7c2b0149fbb Mon Sep 17 00:00:00 2001 From: Anders Broman Date: Thu, 20 Aug 2009 07:26:16 +0000 Subject: From Harald Welte : Connect RRLP to GSM A DTAP application info message. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3919 From me try to fix missuse of pinfo. svn path=/trunk/; revision=29482 --- epan/dissectors/packet-nas_eps.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'epan/dissectors/packet-nas_eps.c') diff --git a/epan/dissectors/packet-nas_eps.c b/epan/dissectors/packet-nas_eps.c index 41edb25de0..0a573f76a7 100644 --- a/epan/dissectors/packet-nas_eps.c +++ b/epan/dissectors/packet-nas_eps.c @@ -3756,6 +3756,8 @@ disect_nas_eps_esm_msg(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int } else { + /* If calling any "gsm" ie dissectors needing pinfo */ + gsm_a_dtap_pinfo = pinfo; (*msg_fcn)(tvb, tree, offset, len - offset); } @@ -3831,6 +3833,8 @@ dissect_nas_eps_emm_msg(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int } else { + /* If calling any "gsm" ie dissectors needing pinfo */ + gsm_a_dtap_pinfo = pinfo; (*msg_fcn)(tvb, tree, offset, len - offset); } -- cgit v1.2.3