mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-04-04 17:01:09 +00:00
Fix a missing uninitialized value which caused typedefs within functions to cause a segfault
This commit is contained in:
parent
63d9e44f56
commit
3c0c002e2f
1 changed files with 1 additions and 1 deletions
2
parser.c
2
parser.c
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue