Fix a missing uninitialized value which caused typedefs within functions to cause a segfault

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-11-25 15:30:31 +01:00
parent 63d9e44f56
commit 3c0c002e2f

View file

@ -2299,7 +2299,7 @@ static bool parse_block_into(parser_t *parser, ast_block *block, bool warnreturn
while (parser->tok != TOKEN_EOF && parser->tok < TOKEN_ERROR)
{
ast_expression *expr;
ast_expression *expr = NULL;
if (parser->tok == '}')
break;