Index: src/images/SkDecodingImageGenerator.cpp |
diff --git a/src/images/SkDecodingImageGenerator.cpp b/src/images/SkDecodingImageGenerator.cpp |
index dfa093becc5d5ff7162727729d04e175fe1d18f0..5c66c94a534e257d01d09d2f0a7bbe595de96bfa 100644 |
--- a/src/images/SkDecodingImageGenerator.cpp |
+++ b/src/images/SkDecodingImageGenerator.cpp |
@@ -69,7 +69,7 @@ public: |
virtual bool allocPixelRef(SkBitmap* bm, SkColorTable* ct) { |
if (NULL == fTarget || !equal_modulo_alpha(fInfo, bm->info())) { |
// Call default allocator. |
- return bm->allocPixels(NULL, ct); |
+ return bm->tryAllocPixels(NULL, ct); |
} |
// TODO(halcanary): verify that all callers of this function |