summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2020-02-23 11:33:50 +0100
committerwolfbeast <mcwerewolf@wolfbeast.com>2020-04-14 12:56:56 +0200
commitdc4695406f02e26009f5f54a858344911f1aa404 (patch)
tree43755568d1fcec60d1d73ef8e3f4cfec50999df5 /js
parentc22a493144e39d76bfa42c46f9d6d17a5143ac35 (diff)
downloadUXP-dc4695406f02e26009f5f54a858344911f1aa404.tar
UXP-dc4695406f02e26009f5f54a858344911f1aa404.tar.gz
UXP-dc4695406f02e26009f5f54a858344911f1aa404.tar.lz
UXP-dc4695406f02e26009f5f54a858344911f1aa404.tar.xz
UXP-dc4695406f02e26009f5f54a858344911f1aa404.zip
Revert "Issue #1382 - Remove invalid assertion."
This reverts commit 9c6a8450b3e96442035b84025b0dd13be3a9e5f8.
Diffstat (limited to 'js')
-rw-r--r--js/src/jsarray.cpp17
1 files changed, 8 insertions, 9 deletions
diff --git a/js/src/jsarray.cpp b/js/src/jsarray.cpp
index 87d1a5acc..4ee967d4c 100644
--- a/js/src/jsarray.cpp
+++ b/js/src/jsarray.cpp
@@ -2106,15 +2106,14 @@ js::ArrayShiftMoveElements(NativeObject* obj)
MOZ_ASSERT_IF(obj->is<ArrayObject>(), obj->as<ArrayObject>().lengthIsWritable());
size_t initlen = obj->getDenseInitializedLength();
-
- 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);
- }
+ 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);
}
static inline void