From ae0788ad41bbdf5bd7fdc035bd9bea3b8fcc7156 Mon Sep 17 00:00:00 2001 From: Martin Stjernholm <mast@lysator.liu.se> Date: Tue, 24 Jan 2006 22:03:19 +1000 Subject: [PATCH] Small fix in cleanup code. Rev: src/interpret.c:1.367 --- src/interpret.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/interpret.c b/src/interpret.c index 9e81e763ad..64bf6aafb6 100644 --- a/src/interpret.c +++ b/src/interpret.c @@ -2,7 +2,7 @@ || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information. -|| $Id: interpret.c,v 1.366 2006/01/20 17:55:50 grubba Exp $ +|| $Id: interpret.c,v 1.367 2006/01/24 12:03:19 mast Exp $ */ #include "global.h" @@ -2945,6 +2945,7 @@ void really_clean_up_interpret(void) for(e=0;e<128;e++) debug_malloc_dump_references( p->x + e); #endif + free_callback_list (&evaluator_callbacks); free_all_pike_frame_blocks(); #endif } -- GitLab