| Index: src/core/SkPath.cpp
|
| diff --git a/src/core/SkPath.cpp b/src/core/SkPath.cpp
|
| index 4af2dad5262c97fa15e1717eabd93debfeaa718f..bbbcacfb9ff2b1f4c2e3571e67babc735c8bd5e8 100644
|
| --- a/src/core/SkPath.cpp
|
| +++ b/src/core/SkPath.cpp
|
| @@ -275,7 +275,7 @@ bool SkPath::conservativelyContainsRect(const SkRect& rect) const {
|
| orig.set(pts, iter.conicWeight());
|
| SkPoint quadPts[5];
|
| int count = orig.chopIntoQuadsPOW2(quadPts, 1);
|
| - SK_ALWAYSBREAK(2 == count);
|
| + SkASSERT_RELEASE(2 == count);
|
|
|
| if (!check_edge_against_rect(quadPts[0], quadPts[2], rect, direction)) {
|
| return false;
|
|
|