Fix a build issue on Debian unstable. The compiler rejected the convertion to ‘bool’ from ‘std::nullptr_t’

llvm-svn: 251276
diff --git a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
index 3e18a40..ddc5bd7 100644
--- a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
+++ b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
@@ -1522,7 +1522,7 @@
         {
             if (log)
                 log->Printf("RenderScriptRuntime::LoadAllocation - Couldn't JIT allocation details");
-            return nullptr;
+            return false;
         }
     }
 
@@ -1637,7 +1637,7 @@
         {
             if (log)
                 log->Printf("RenderScriptRuntime::SaveAllocation - Couldn't JIT allocation details");
-            return nullptr;
+            return false;
         }
     }