aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--epan/except.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/except.c b/epan/except.c
index 0408eda29e..f740ebc012 100644
--- a/epan/except.c
+++ b/epan/except.c
@@ -139,8 +139,8 @@ void except_deinit(void)
static int init_counter;
static void unhandled_catcher(except_t *);
static void (*uh_catcher_ptr)(except_t *) = unhandled_catcher;
-static void *(*allocator)(size_t) = malloc;
-static void (*deallocator)(void *) = free;
+static void *(*allocator)(size_t) = g_malloc;
+static void (*deallocator)(void *) = g_free;
static struct except_stacknode *stack_top;
#define get_top() (stack_top)