Set the output to NULL always before parsing stuff

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-11-25 20:48:06 +01:00
parent 4513fc4d0b
commit 3424b7227b

View file

@ -2230,6 +2230,8 @@ static bool parse_switch(parser_t *parser, ast_block *block, ast_expression **ou
static bool parse_statement(parser_t *parser, ast_block *block, ast_expression **out, bool allow_cases)
{
ast_value *typevar = NULL;
*out = NULL;
if (parser->tok == TOKEN_IDENT)
typevar = parser_find_typedef(parser, parser_tokval(parser), 0);