From 9f8d0b953e98cf4473577ce60249ca23e240c03f Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Mon, 12 Dec 2011 02:07:28 +0000 Subject: [PATCH] Fix memory leak. [SVN r75913] --- v2/engine/function.c | 1 + 1 file changed, 1 insertion(+) diff --git a/v2/engine/function.c b/v2/engine/function.c index df5cf8612..7e7cd85ae 100644 --- a/v2/engine/function.c +++ b/v2/engine/function.c @@ -2526,6 +2526,7 @@ FUNCTION * function_compile_actions( const char * actions, OBJECT * file, int li parse = parse_actions( actions ); compiler_init( c ); var_parse_actions_compile( parse, c ); + var_parse_actions_free( parse ); compile_emit( c, INSTR_RETURN, 0 ); result = compile_to_function( c ); compiler_free( c );