mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-23 20:33:05 +00:00
Fix that memory leak that I spent hours trying to find months ago and didn't succeed at.
This commit is contained in:
parent
f892b32335
commit
d45956f55e
2 changed files with 1 additions and 1 deletions
1
Makefile
1
Makefile
|
@ -129,7 +129,6 @@ SPLINTFLAGS = \
|
|||
-nullstate \
|
||||
-varuse \
|
||||
-mustfreefresh \
|
||||
-compdestroy \
|
||||
-compmempass \
|
||||
-nullpass \
|
||||
-onlytrans \
|
||||
|
|
1
parser.c
1
parser.c
|
@ -5814,6 +5814,7 @@ static ast_expression* parse_expression_leave(parser_t *parser, bool stopatcomma
|
|||
}
|
||||
vec_free(sy.out);
|
||||
vec_free(sy.ops);
|
||||
vec_free(sy.argc);
|
||||
var->cvq = cvq;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue