aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-zbee-aps.c
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2015-06-28 13:06:31 +0200
committerMichael Mann <mmann78@netscape.net>2015-07-03 23:34:28 +0000
commit80f7ee063d371f0de989d51d40c6b4fabfbfb430 (patch)
tree9d69b4eb9445f73f88535f36be2374f528012b2d /epan/dissectors/packet-zbee-aps.c
parent750babc53acae3399f31d2160d6d719c51c8f222 (diff)
Call reassembly_table_destroy for some dissectors
This patch adds reassembly_table_destroy calls as cleanup function for dissectors which have a simple init routine that just calls reassembly_table_init (comments are ignored). The changes were automatically generated using https://git.lekensteyn.nl/peter/wireshark-notes/diff/one-off/cleanup-rewrite.py?id=4cc0aec05dc67a51926a045e1955b7a956757b5e (with the if and assignment parsers disabled). The only difference from the autogenerated output is that the XXX comments from the init routines in smb-pipe and tds dissectors are kept. Change-Id: I64aedf7189877247282b30b0e0f83757be6199e7 Reviewed-on: https://code.wireshark.org/review/9222 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-zbee-aps.c')
-rw-r--r--epan/dissectors/packet-zbee-aps.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/epan/dissectors/packet-zbee-aps.c b/epan/dissectors/packet-zbee-aps.c
index cabd99771c..53f0fa9dae 100644
--- a/epan/dissectors/packet-zbee-aps.c
+++ b/epan/dissectors/packet-zbee-aps.c
@@ -61,6 +61,7 @@ static guint dissect_zbee_t2 (tvbuff_t *tvb, proto_tree *tree,
static guint zbee_apf_transaction_len (tvbuff_t *tvb, guint offset, guint8 type);
static void proto_init_zbee_aps(void);
+static void proto_cleanup_zbee_aps(void);
void proto_reg_handoff_zbee_aps(void);
void proto_register_zbee_aps(void);
@@ -2127,6 +2128,7 @@ void proto_register_zbee_aps(void)
/* Register the init routine. */
register_init_routine(proto_init_zbee_aps);
+ register_cleanup_routine(proto_cleanup_zbee_aps);
/* Register the ZigBee Application Framework protocol with Wireshark. */
proto_zbee_apf = proto_register_protocol("ZigBee Application Framework", "ZigBee APF", "zbee_apf");
@@ -2172,6 +2174,11 @@ static void proto_init_zbee_aps(void)
&addresses_reassembly_table_functions);
} /* proto_init_zbee_aps */
+static void proto_cleanup_zbee_aps(void)
+{
+ reassembly_table_destroy(&zbee_aps_reassembly_table);
+}
+
/*
* Editor modelines - http://www.wireshark.org/tools/modelines.html
*