Fixed some incorrect return values.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@139582 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Expression/ClangExpressionDeclMap.cpp b/source/Expression/ClangExpressionDeclMap.cpp
index 75387a9..3ca7db1 100644
--- a/source/Expression/ClangExpressionDeclMap.cpp
+++ b/source/Expression/ClangExpressionDeclMap.cpp
@@ -919,13 +919,13 @@
     if (!m_struct_vars->m_struct_laid_out)
     {
         err.SetErrorString("Structure hasn't been laid out yet");
-        return LLDB_INVALID_ADDRESS;
+        return false;
     }
     
     if (!exe_ctx.frame)
     {
         err.SetErrorString("Received null execution frame");
-        return LLDB_INVALID_ADDRESS;
+        return false;
     }
     
     ClangPersistentVariables &persistent_vars = exe_ctx.target->GetPersistentVariables();