From: Fabrice Bellard Date: Wed, 19 Mar 2025 13:27:01 +0000 (+0100) Subject: msan fix (#389) X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/postgres_fdw.c?a=commitdiff_plain;h=9f1864a268d7ae2d86971f0a6415aa6371498039;p=quickjs.git msan fix (#389) --- diff --git a/quickjs.c b/quickjs.c index 7df64e6..f8c6d89 100644 --- a/quickjs.c +++ b/quickjs.c @@ -23937,6 +23937,7 @@ static int js_parse_destructuring_element(JSParseState *s, int tok, int is_arg, goto var_error; opcode = OP_scope_get_var; scope = s->cur_func->scope_level; + label_lvalue = -1; } else { if (js_parse_left_hand_side_expr(s)) return -1;