Commit 6bd29160 authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard

jscript: Initialize variable flags in new_variable_declaration().

parent cf751a6d
......@@ -1149,6 +1149,8 @@ static variable_declaration_t *new_variable_declaration(parser_ctx_t *ctx, const
ret->expr = expr;
ret->next = NULL;
ret->global_next = NULL;
ret->block_scope = FALSE;
ret->constant = FALSE;
return ret;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment