aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-nas_eps.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2009-08-20 07:26:16 +0000
committerAnders Broman <anders.broman@ericsson.com>2009-08-20 07:26:16 +0000
commit7945bf1bc9926fb7eab8cb0f66e2a7c2b0149fbb (patch)
tree8797dd04211bdbdf7f1bf983be8ca7da9de1fcc6 /epan/dissectors/packet-nas_eps.c
parenta599db08d88757c272686583697a667e06186613 (diff)
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
Diffstat (limited to 'epan/dissectors/packet-nas_eps.c')
-rw-r--r--epan/dissectors/packet-nas_eps.c4
1 files changed, 4 insertions, 0 deletions
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);
}