commit | 3cc820c0504dc6de081d08391affe68b69031c63 | [log] [tgz] |
---|---|---|
author | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Wed Jul 03 19:36:55 2013 +0000 |
committer | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Wed Jul 03 19:36:55 2013 +0000 |
tree | 95042946e443e11f9c1c266b7fda5137d5d12963 | |
parent | 1267fbd95290f58443652ca8d947bde50b212618 [diff] |
Fix for r9888 bug https://codereview.chromium.org/18656002/ git-svn-id: http://skia.googlecode.com/svn/trunk@9899 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/effects/SkBlurMaskFilter.cpp b/src/effects/SkBlurMaskFilter.cpp index 8c14bc8..a57d77a 100644 --- a/src/effects/SkBlurMaskFilter.cpp +++ b/src/effects/SkBlurMaskFilter.cpp
@@ -412,7 +412,7 @@ bool isNormalBlur = (SkBlurMaskFilter::kNormal_BlurStyle == fBlurStyle); *result = context->gaussianBlur(src, isNormalBlur && canOverwriteSrc, clipRect, sigma, sigma); - if (NULL == result) { + if (NULL == *result) { return false; }