aboutsummaryrefslogtreecommitdiff
path: root/tcc.c
diff options
context:
space:
mode:
authorgrischka <grischka>2009-04-16 23:25:25 +0200
committergrischka <grischka>2009-04-18 15:08:02 +0200
commite6ba81b012b1ce6d7c451ef25d21330c638e1320 (patch)
tree01dedf0346533cad3c73f2e3b6dd4c98c6b5900d /tcc.c
parentb1697be6917ecf16013d8467329bccff6a9e5b9f (diff)
downloadtinycc-e6ba81b012b1ce6d7c451ef25d21330c638e1320.tar.gz
tinycc-e6ba81b012b1ce6d7c451ef25d21330c638e1320.tar.bz2
get rid of 8 bytes memory leak
Diffstat (limited to 'tcc.c')
-rw-r--r--tcc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tcc.c b/tcc.c
index 96c941c..acff2e4 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 */