aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtse.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2014-01-10 18:58:56 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2014-01-10 18:58:56 +0000
commit640e6f44ec65e87f9112fd09f93b21dc79fce0e6 (patch)
tree930ada6a51c6a88b39f29a8a3d52e4b9bff02c34 /epan/dissectors/packet-rtse.c
parent830509b7dc0a1610b578dbdf95736bc45905061e (diff)
Return other than 0 from RTSE when handling reassembly initiated from SES.
This bug was introduced in revision 53093 when updating to new-style dissector. svn path=/trunk/; revision=54693
Diffstat (limited to 'epan/dissectors/packet-rtse.c')
-rw-r--r--epan/dissectors/packet-rtse.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/epan/dissectors/packet-rtse.c b/epan/dissectors/packet-rtse.c
index 2dd38cd793..46e595d839 100644
--- a/epan/dissectors/packet-rtse.c
+++ b/epan/dissectors/packet-rtse.c
@@ -828,6 +828,9 @@ dissect_rtse(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, void* d
/* ROS won't do this for us */
session->ros_op = (ROS_OP_INVOKE | ROS_OP_ARGUMENT);
offset=dissect_ber_external_type(FALSE, tree, next_tvb, 0, &asn1_ctx, -1, call_rtse_external_type_callback);
+ top_tree = NULL;
+ /* Return other than 0 to indicate that we handled this packet */
+ return 1;
} else {
offset = tvb_length (tvb);
}