diff options
Diffstat (limited to 'lldb')
-rw-r--r-- | lldb/source/Interpreter/ScriptInterpreterPython.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/ScriptInterpreterPython.cpp b/lldb/source/Interpreter/ScriptInterpreterPython.cpp index e7c68e74da9..2db4202d9c8 100644 --- a/lldb/source/Interpreter/ScriptInterpreterPython.cpp +++ b/lldb/source/Interpreter/ScriptInterpreterPython.cpp @@ -700,7 +700,7 @@ ScriptInterpreterPython::ExecuteOneLineWithReturn (const char *in_string, 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; |