summaryrefslogtreecommitdiff
path: root/epan/packet.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/packet.c')
-rw-r--r--epan/packet.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/epan/packet.c b/epan/packet.c
index db33ae7a77..5bc9595c0a 100644
--- a/epan/packet.c
+++ b/epan/packet.c
@@ -139,12 +139,6 @@ init_dissection(void)
/* Initialize protocol-specific variables. */
g_slist_foreach(init_routines, &call_init_routine, NULL);
- /* Initialize the common data structures for fragment reassembly.
- Must be done *after* calling init routines, as those routines
- may free up space for fragments, which they find by using the
- data structures that "reassemble_cleanup()" frees. */
- reassemble_init();
-
/* Initialize the stream-handling tables */
stream_init();
@@ -168,12 +162,6 @@ cleanup_dissection(void)
/* Cleanup protocol-specific variables. */
g_slist_foreach(init_routines, &call_init_routine, NULL);
- /* Cleanup the common data structures for fragment reassembly.
- Must be done *after* calling init routines, as those routines
- may free up space for fragments, which they find by using the
- data structures that "reassemble_cleanup()" frees. */
- reassemble_cleanup();
-
/* Cleanup the stream-handling tables */
stream_cleanup();