commit | deff73980feb4eb760e98e24611375d967bf6107 | [log] [tgz] |
---|---|---|
author | Doug Kwan <dougkwan@google.com> | Mon Jul 11 00:48:07 2011 -0700 |
committer | Doug Kwan <dougkwan@google.com> | Mon Jul 11 00:48:07 2011 -0700 |
tree | 10140bdd3e663e3f92f148912f6e5d4f5d6f72c0 | |
parent | 6789a813d4a48454bc1dc686e89d3e1a946a2ae8 [diff] [blame] |
Fix conversion from a bool value to a pointer. Change-Id: I7e634ac08b6a54586ed2a335095515619ef1614d
diff --git a/lib/ExecutionEngine/MCCacheReader.cpp b/lib/ExecutionEngine/MCCacheReader.cpp index 8404027..0a97abb 100644 --- a/lib/ExecutionEngine/MCCacheReader.cpp +++ b/lib/ExecutionEngine/MCCacheReader.cpp
@@ -57,7 +57,7 @@ Script *S) { // Check file handle if (!objFile || objFile->getFD() < 0 || !infoFile || infoFile->getFD() < 0) { - return false; + return NULL; } mObjFile = objFile;