Index: tests/ImageDecodingTest.cpp |
diff --git a/tests/ImageDecodingTest.cpp b/tests/ImageDecodingTest.cpp |
index c1ff39fa4e1e80f4bced140853a0c8f5fa00bb7b..61c89cbd4a5f9c465dfaf1b2cd081d5bb1d706e3 100644 |
--- a/tests/ImageDecodingTest.cpp |
+++ b/tests/ImageDecodingTest.cpp |
@@ -437,7 +437,8 @@ DEF_TEST(ImprovedBitmapFactory, reporter) { |
// example of how Android will do this inside their BitmapFactory |
SkDecodingImageGenerator::Options opts(1, true, kN32_SkColorType); |
SkBitmap bm; |
- SkImageGenerator* gen = SkDecodingImageGenerator::Create(stream, opts); |
+ SkAutoTDelete<SkImageGenerator> gen(SkDecodingImageGenerator::Create(stream.detach(), |
+ opts)); |
REPORTER_ASSERT(reporter, gen->tryGenerateBitmap(&bm)); |
} |
} |