Fix sloppy mode arguments uninitialized value use

MemorySanitizer complained about uninitialized reads in
the indexed property code path in JS_GetPropertyValue()
with JS_CLASS_MAPPED_ARGUMENTS objects.
This commit is contained in:
Ben Noordhuis 2023-11-01 04:24:42 +01:00
parent 67585d0421
commit f8b3a2e93c

View file

@ -15005,6 +15005,8 @@ static JSValue js_build_mapped_arguments(JSContext *ctx, int argc,
if (JS_IsException(val))
return val;
p = JS_VALUE_GET_OBJ(val);
p->u.array.u.values = NULL;
p->u.array.count = 0;
/* add the length field (cannot fail) */
pr = add_property(ctx, p, JS_ATOM_length,