Signed-off-by: Paul Gofman pgofman@codeweavers.com --- dlls/jscript/parser.y | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/dlls/jscript/parser.y b/dlls/jscript/parser.y index 3f5f93fcc0c..73c03731fd4 100644 --- a/dlls/jscript/parser.y +++ b/dlls/jscript/parser.y @@ -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; }