aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/pathops/SkAddIntersections.cpp
diff options
context:
space:
mode:
authorGravatar Cary Clark <caryclark@google.com>2017-01-20 08:14:33 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-01-20 14:43:57 +0000
commit4c76c41c981dd7ea95062a1895a6e3415b70bce1 (patch)
tree297a70ab129b8965ecb0ef12a7ed332d6d125533 /src/pathops/SkAddIntersections.cpp
parenteca02909f32a412c333ff14d67d8cb58862b41e2 (diff)
fix fuzz asserts triggered by old fuzzes
fuzz fixes Fixes from running all pathops fuzz testson ToT. R=kjlubick@google.com BUG=skia: Change-Id: Ic84b868a0cc53993e6561bc95fa364218bc3aa34 Reviewed-on: https://skia-review.googlesource.com/7325 Reviewed-by: Cary Clark <caryclark@google.com> Commit-Queue: Cary Clark <caryclark@google.com>
Diffstat (limited to 'src/pathops/SkAddIntersections.cpp')
-rw-r--r--src/pathops/SkAddIntersections.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pathops/SkAddIntersections.cpp b/src/pathops/SkAddIntersections.cpp
index 17bc9e2ecb..b47e7df599 100644
--- a/src/pathops/SkAddIntersections.cpp
+++ b/src/pathops/SkAddIntersections.cpp
@@ -561,7 +561,7 @@ bool AddIntersectTs(SkOpContour* test, SkOpContour* next, SkOpCoincidence* coinc
wn.segment()->debugValidate();
coinIndex = -1;
}
- SkASSERT(coinIndex < 0); // expect coincidence to be paired
+ SkOPOBJASSERT(coincidence, coinIndex < 0); // expect coincidence to be paired
} while (wn.advance());
} while (wt.advance());
return true;