From: Wolfgang (Blub) Bumiller Date: Sun, 25 Nov 2012 14:31:26 +0000 (+0100) Subject: free the _locals vector X-Git-Tag: 0.1.9~273 X-Git-Url: http://de.git.xonotic.org/?a=commitdiff_plain;h=f6a374c1d5ace3470258c7c4f60261c7266b9e62;p=xonotic%2Fgmqcc.git free the _locals vector --- diff --git a/parser.c b/parser.c index f0b724d..5e2b160 100644 --- a/parser.c +++ b/parser.c @@ -4105,6 +4105,7 @@ void parser_cleanup() util_htdel(parser->variables[i]); vec_free(parser->variables); vec_free(parser->_blocklocals); + vec_free(parser->_locals); for (i = 0; i < vec_size(parser->_typedefs); ++i) ast_delete(parser->_typedefs[i]);