Target arraybuffer's buffer should be absolute addressed in ecma_op_typedarray_set_with_typedarray (#2758)
This patch fixes #2757, also adds a short path for the case when the source and the target typedarrays are the same. JerryScript-DCO-1.0-Signed-off-by: Robert Fancsik frobert@inf.u-szeged.hu
This commit is contained in:
committed by
László Langó
parent
a1fdcf06cb
commit
d4e27d3003
@@ -708,7 +708,7 @@ ecma_op_typedarray_set_with_typedarray (ecma_value_t this_arg, /**< this argumen
|
||||
|
||||
/* 9. targetBuffer */
|
||||
ecma_object_t *target_arraybuffer_p = ecma_typedarray_get_arraybuffer (target_typedarray_p);
|
||||
lit_utf8_byte_t *target_buffer_p = ecma_typedarray_get_buffer (target_typedarray_p);
|
||||
lit_utf8_byte_t *target_buffer_p = ecma_arraybuffer_get_buffer (target_arraybuffer_p);
|
||||
|
||||
/* 11. targetLength */
|
||||
ecma_length_t target_length = ecma_typedarray_get_length (target_typedarray_p);
|
||||
@@ -754,6 +754,12 @@ ecma_op_typedarray_set_with_typedarray (ecma_value_t this_arg, /**< this argumen
|
||||
return ecma_raise_range_error (ECMA_ERR_MSG ("Invalid range of index"));
|
||||
}
|
||||
|
||||
/* Fast path first. If the source and target arrays are the same we do not need to copy anything. */
|
||||
if (this_arg == arr_val)
|
||||
{
|
||||
return ECMA_VALUE_UNDEFINED;
|
||||
}
|
||||
|
||||
/* 24.d, 25. srcByteIndex */
|
||||
ecma_length_t src_byte_index = 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user