[Lldb-commits] [lldb] r150125 - /lldb/trunk/include/lldb/Expression/ClangExpressionVariable.h

Sean Callanan scallanan at apple.com
Wed Feb 8 16:54:55 PST 2012


Author: spyffe
Date: Wed Feb  8 18:54:55 2012
New Revision: 150125

URL: http://llvm.org/viewvc/llvm-project?rev=150125&view=rev
Log:
Remembered to NULL out the symbol, which was
causing testsuite crashes.

Modified:
    lldb/trunk/include/lldb/Expression/ClangExpressionVariable.h

Modified: lldb/trunk/include/lldb/Expression/ClangExpressionVariable.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Expression/ClangExpressionVariable.h?rev=150125&r1=150124&r2=150125&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Expression/ClangExpressionVariable.h (original)
+++ lldb/trunk/include/lldb/Expression/ClangExpressionVariable.h Wed Feb  8 18:54:55 2012
@@ -98,7 +98,8 @@
             m_named_decl (NULL),
             m_llvm_value (NULL),
             m_lldb_value (NULL),
-            m_lldb_var   ()
+            m_lldb_var   (),
+            m_lldb_sym   (NULL)
         {
         }
 





More information about the lldb-commits mailing list