mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-04-04 17:01:09 +00:00
Set the output to NULL always before parsing stuff
This commit is contained in:
parent
4513fc4d0b
commit
3424b7227b
1 changed files with 2 additions and 0 deletions
2
parser.c
2
parser.c
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue