[Lldb-commits] [lldb] r137329 - /lldb/trunk/source/Interpreter/ScriptInterpreterPython.cpp
Johnny Chen
johnny.chen at apple.com
Thu Aug 11 12:17:45 PDT 2011
Author: johnny
Date: Thu Aug 11 14:17:45 2011
New Revision: 137329
URL: http://llvm.org/viewvc/llvm-project?rev=137329&view=rev
Log:
To silence the static analyzer.
Modified:
lldb/trunk/source/Interpreter/ScriptInterpreterPython.cpp
Modified: lldb/trunk/source/Interpreter/ScriptInterpreterPython.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/ScriptInterpreterPython.cpp?rev=137329&r1=137328&r2=137329&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/ScriptInterpreterPython.cpp (original)
+++ lldb/trunk/source/Interpreter/ScriptInterpreterPython.cpp Thu Aug 11 14:17:45 2011
@@ -700,7 +700,7 @@
PyObject *globals = PyModule_GetDict (mainmod);
PyObject *locals = NULL;
PyObject *py_error = NULL;
- bool ret_success;
+ bool ret_success = false;
bool should_decrement_locals = false;
int success;
More information about the lldb-commits
mailing list