mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-17 09:02:25 +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 \
|
-nullstate \
|
||||||
-varuse \
|
-varuse \
|
||||||
-mustfreefresh \
|
-mustfreefresh \
|
||||||
-compdestroy \
|
|
||||||
-compmempass \
|
-compmempass \
|
||||||
-nullpass \
|
-nullpass \
|
||||||
-onlytrans \
|
-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.out);
|
||||||
vec_free(sy.ops);
|
vec_free(sy.ops);
|
||||||
|
vec_free(sy.argc);
|
||||||
var->cvq = cvq;
|
var->cvq = cvq;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue