- remove temporary fix for MemorySanitizer:
  setting p->u.array.count to 0 silenced a warning in JS_GetPropertyValue on a
  hacky test agains the length of fast_array object.
  This hack was removed by commit c3635861f6.
This commit is contained in:
Charlie Gordon 2024-02-13 09:45:58 +01:00
parent 1fe04149e9
commit 95e0aa0526
1 changed files with 0 additions and 2 deletions

View File

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