aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2009-10-20 17:43:05 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2009-10-20 17:43:05 +0000
commit78318b32ee83e2e2834a2a38d1ad1abcbf716ac2 (patch)
tree20af9bf5a0c20b896b67c0572499d79448297be1 /epan/epan.c
parent8ec5a160ecbe147ef92b86d0595703dd4ebe36da (diff)
Add emem_init() which initializes both the ep_ and se_ allocators; have all
callers use that instead of initializing each allocator individually. svn path=/trunk/; revision=30646
Diffstat (limited to 'epan/epan.c')
-rw-r--r--epan/epan.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/epan/epan.c b/epan/epan.c
index 5d159852d1..f59decee0e 100644
--- a/epan/epan.c
+++ b/epan/epan.c
@@ -82,8 +82,7 @@ epan_init(void (*register_all_protocols_func)(register_cb cb, gpointer client_da
report_read_failure, report_write_failure);
/* initialize memory allocation subsystem */
- ep_init_chunk();
- se_init_chunk();
+ emem_init();
/* initialize the GUID to name mapping table */
guids_init();