check for null on Lion

http://codereview.appspot.com/5369107/

M    src/ports/SkFontHost_mac_coretext.cpp



git-svn-id: http://skia.googlecode.com/svn/trunk@2674 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
caryclark@google.com 2011-11-14 13:46:33 +00:00
parent 761661580e
commit f1511f2e69

View File

@ -331,7 +331,7 @@ public:
const uint16_t* getShortPtr() {
return fObj ? (const uint16_t*) CFDataGetBytePtr(fObj) : NULL;
}
~AutoCFDataRelease() { CFRelease(fObj); }
~AutoCFDataRelease() { CFSafeRelease(fObj); }
private:
CFDataRef fObj;
};