From: reed@android.com Date: Tue, 7 Jul 2009 21:18:10 +0000 (+0000) Subject: check if the encoder factory returned null X-Git-Tag: submit/tizen/20180928.044319~19501 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9dc5465c1c5cc11f72ddb0419da1964bc865c26f;p=platform%2Fupstream%2FlibSkiaSharp.git check if the encoder factory returned null git-svn-id: http://skia.googlecode.com/svn/trunk@255 2bbb7eff-a529-9590-31e7-b0007b416f81 --- diff --git a/samplecode/SampleEncode.cpp b/samplecode/SampleEncode.cpp index 2730ecef60..b09b2ebef6 100644 --- a/samplecode/SampleEncode.cpp +++ b/samplecode/SampleEncode.cpp @@ -128,7 +128,8 @@ public: remove(path.c_str()); SkImageEncoder* codec = SkImageEncoder::Create(gTypes[j]); - if (!codec->encodeFile(path.c_str(), fBitmaps[i], 100)) { + if (NULL == codec || + !codec->encodeFile(path.c_str(), fBitmaps[i], 100)) { SkDebugf("------ failed to encode %s\n", path.c_str()); remove(path.c_str()); // remove any partial file }