aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/ImageDecodingTest.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/ImageDecodingTest.cpp b/tests/ImageDecodingTest.cpp
index c1ff39fa4e..61c89cbd4a 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));
}
}