From e6ba81b012b1ce6d7c451ef25d21330c638e1320 Mon Sep 17 00:00:00 2001 From: grischka Date: Thu, 16 Apr 2009 23:25:25 +0200 Subject: [PATCH] get rid of 8 bytes memory leak --- tcc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tcc.c b/tcc.c index 96c941c3..acff2e4c 100644 --- a/tcc.c +++ b/tcc.c @@ -10438,6 +10438,7 @@ static void tcc_cleanup(void) dynarray_reset(&sym_pools, &nb_sym_pools); /* string buffer */ cstr_free(&tokcstr); + cstr_free(&tok_spaces); /* reset symbol stack */ sym_free_first = NULL; /* cleanup from error/setjmp */