Index: src/utils/SkDashPath.cpp |
diff --git a/src/utils/SkDashPath.cpp b/src/utils/SkDashPath.cpp |
index 02de98f1d66e162896078bffbca391ae8b21126d..4b2b33d2c4a1bf2ced56dcdd3d13ddf4772a0f29 100644 |
--- a/src/utils/SkDashPath.cpp |
+++ b/src/utils/SkDashPath.cpp |
@@ -119,7 +119,7 @@ static bool cull_path(const SkPath& srcPath, const SkStrokeRec& rec, |
SkTSwap(minX, maxX); |
} |
- SkASSERT(minX < maxX); |
+ SkASSERT(minX <= maxX); |
if (maxX < bounds.fLeft || minX > bounds.fRight) { |
return false; |
} |