commit | 49f085dddff10473b6ebf832a974288300224e60 | [log] [tgz] |
---|---|---|
author | bsalomon <bsalomon@google.com> | Fri Sep 05 13:34:00 2014 -0700 |
committer | Commit bot <commit-bot@chromium.org> | Fri Sep 05 13:34:00 2014 -0700 |
tree | 308a3cac5e1fb053c9e27e7d07213d72eaa05409 | |
parent | 7260d7292bde966f038b8e166f3fe41ddd8f2099 [diff] [blame] |
"NULL !=" = NULL R=reed@google.com Author: bsalomon@google.com Review URL: https://codereview.chromium.org/544233002
diff --git a/src/effects/SkLayerDrawLooper.cpp b/src/effects/SkLayerDrawLooper.cpp index 19525ec..30709c4 100644 --- a/src/effects/SkLayerDrawLooper.cpp +++ b/src/effects/SkLayerDrawLooper.cpp
@@ -337,7 +337,7 @@ if (NULL == fRecs) { fRecs = rec; } else { - SkASSERT(NULL != fTopRec); + SkASSERT(fTopRec); fTopRec->fNext = rec; } fTopRec = rec;