mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-24 04:41:25 +00:00
free the _locals vector
This commit is contained in:
parent
3c0c002e2f
commit
f6a374c1d5
1 changed files with 1 additions and 0 deletions
1
parser.c
1
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]);
|
||||
|
|
Loading…
Reference in a new issue