aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/pathops/SkOpSpan.cpp
diff options
context:
space:
mode:
authorGravatar caryclark <caryclark@google.com>2016-09-22 05:20:07 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-09-22 05:20:07 -0700
commite7bb5b226662f01c91574b29f435acae71c76c46 (patch)
treea16e42c215c27985bae8e2e288f57586d1fe3a9f /src/pathops/SkOpSpan.cpp
parentac78863acdef4b428aaf66985b80c76d1be0fdea (diff)
fix next kevin fuzz
Fix one more fuzzer crash. R=kjlubick@google.com BUG=skia:5775 GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2357373002 Review-Url: https://codereview.chromium.org/2357373002
Diffstat (limited to 'src/pathops/SkOpSpan.cpp')
-rwxr-xr-xsrc/pathops/SkOpSpan.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pathops/SkOpSpan.cpp b/src/pathops/SkOpSpan.cpp
index 0c47b685f0..2b85b7103b 100755
--- a/src/pathops/SkOpSpan.cpp
+++ b/src/pathops/SkOpSpan.cpp
@@ -39,7 +39,7 @@ bool SkOpPtT::collapsed(const SkOpPtT* check) const {
}
bool SkOpPtT::contains(const SkOpPtT* check) const {
- SkASSERT(this != check);
+ SkOPASSERT(this != check);
const SkOpPtT* ptT = this;
const SkOpPtT* stopPtT = ptT;
while ((ptT = ptT->next()) != stopPtT) {