diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-02-03 04:52:44 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-02-03 04:52:44 +0100 |
commit | 9c6a8450b3e96442035b84025b0dd13be3a9e5f8 (patch) | |
tree | 7ac81b5bf434c27dc4952364016536bbf19cc3b8 /js | |
parent | bbbfd00f95d2d689aabe0087e597efab48442a18 (diff) | |
download | uxp-9c6a8450b3e96442035b84025b0dd13be3a9e5f8.tar.gz |
Issue #1382 - Remove invalid assertion.
There is flexibility in exactly the value the initialized length must
hold, i.e. if an array is completely empty, it is valid for the
initialized length to be any value between zero and the length of the
array, as long as the in-memory values below the initialized length have
been initialized with a hole value.
In the case of 0, the array is packed and the move operation would be a
nop, so simply convert the assert to a condition to save some cycles.
Diffstat (limited to 'js')
-rw-r--r-- | js/src/jsarray.cpp | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/js/src/jsarray.cpp b/js/src/jsarray.cpp index e618c319fd..73243d9181 100644 --- a/js/src/jsarray.cpp +++ b/js/src/jsarray.cpp @@ -2105,14 +2105,15 @@ js::ArrayShiftMoveElements(NativeObject* obj) MOZ_ASSERT_IF(obj->is<ArrayObject>(), obj->as<ArrayObject>().lengthIsWritable()); size_t initlen = obj->getDenseInitializedLength(); - MOZ_ASSERT(initlen > 0); - - /* - * At this point the length and initialized length have already been - * decremented and the result fetched, so just shift the array elements - * themselves. - */ - obj->moveDenseElementsNoPreBarrier(0, 1, initlen); + + if (initlen > 0) { + /* + * At this point the length and initialized length have already been + * decremented and the result fetched, so just shift the array elements + * themselves. + */ + obj->moveDenseElementsNoPreBarrier(0, 1, initlen); + } } static inline void |