| Index: src/core/SkPath.cpp | 
| diff --git a/src/core/SkPath.cpp b/src/core/SkPath.cpp | 
| index 400b7ab86ca9582bddf5a23f8897b837c21b0f5c..f3c2628c4fe33fe7449451de4225d4d1143e81ec 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; | 
|  |