Index: src/core/SkEdge.cpp |
diff --git a/src/core/SkEdge.cpp b/src/core/SkEdge.cpp |
index dd5ab5fbc62febaf3b7eb3c3fb57156c6d757fb1..ac0ca58c22d96b32ceec3af6514d4f181da930d4 100644 |
--- a/src/core/SkEdge.cpp |
+++ b/src/core/SkEdge.cpp |
@@ -66,7 +66,7 @@ int SkEdge::setLine(const SkPoint& p0, const SkPoint& p1, const SkIRect* clip, |
return 0; |
} |
// are we completely above or below the clip? |
- if (NULL != clip && (top >= clip->fBottom || bot <= clip->fTop)) { |
+ if (clip && (top >= clip->fBottom || bot <= clip->fTop)) { |
return 0; |
} |