Fix that memory leak that I spent hours trying to find months ago and didn't succeed at.

This commit is contained in:
Dale Weiler 2013-05-29 03:35:51 +00:00
parent f892b32335
commit d45956f55e
2 changed files with 1 additions and 1 deletions

View file

@ -129,7 +129,6 @@ SPLINTFLAGS = \
-nullstate \
-varuse \
-mustfreefresh \
-compdestroy \
-compmempass \
-nullpass \
-onlytrans \

View file

@ -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;
}
}