diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-12-22 14:35:26 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-12-22 14:35:26 +0100 |
commit | 85d43d68bb32e484167bdeb0b6d78c60d44444d2 (patch) | |
tree | 5f044aaa90f7bafe7580ef7951902fe9e8bba0d1 /dom | |
parent | fa97cddb3910ce8c35992d3ad2ec0fda060e3041 (diff) | |
download | uxp-85d43d68bb32e484167bdeb0b6d78c60d44444d2.tar.gz |
Fix singed/unsigned type confusion for intersection threshold.
Tag #249
Diffstat (limited to 'dom')
-rw-r--r-- | dom/base/DOMIntersectionObserver.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dom/base/DOMIntersectionObserver.cpp b/dom/base/DOMIntersectionObserver.cpp index f5e59c2b9d..650ec83cdb 100644 --- a/dom/base/DOMIntersectionObserver.cpp +++ b/dom/base/DOMIntersectionObserver.cpp @@ -424,15 +424,15 @@ DOMIntersectionObserver::Update(nsIDocument* aDocument, DOMHighResTimeStamp time intersectionRatio = intersectionRect.isSome() ? 1.0 : 0.0; } - size_t threshold = -1; + int32_t threshold = -1; if (intersectionRatio > 0.0) { if (intersectionRatio >= 1.0) { intersectionRatio = 1.0; - threshold = mThresholds.Length(); + threshold = (int32_t)mThresholds.Length(); } else { for (size_t k = 0; k < mThresholds.Length(); ++k) { if (mThresholds[k] <= intersectionRatio) { - threshold = k + 1; + threshold = (int32_t)k + 1; } else { break; } |