Fix reference count management in %TypedArray%.prototype.reduce{Right} (#4419)

This patch fixes #4397.

JerryScript-DCO-1.0-Signed-off-by: Robert Fancsik frobert@inf.u-szeged.hu
This commit is contained in:
Robert Fancsik
2021-01-07 11:59:16 +01:00
committed by GitHub
parent 61d172aaaf
commit fc701aef6d
2 changed files with 21 additions and 1 deletions
@@ -276,7 +276,7 @@ ecma_builtin_typedarray_prototype_reduce_with_direction (ecma_value_t this_arg,
return ecma_raise_type_error (ECMA_ERR_MSG ("Initial value cannot be undefined."));
}
return arguments_list_p[1];
return ecma_copy_value (arguments_list_p[1]);
}
JERRY_ASSERT (info_p->length > 0);