From 638b98d3ed4c61af1b971a0ba0e6c14ac3492860 Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Fri, 9 Oct 2015 20:56:23 +0000 Subject: Fix build broken by r249885 llvm-svn: 249900 --- .../Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp') diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp index ea93cf0..70232e4 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp +++ b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp @@ -189,8 +189,8 @@ ScriptInterpreterPython::ScriptInterpreterPython (CommandInterpreter &interprete m_saved_stderr (), m_main_module (), m_lldb_module (), - m_session_dict (false), // Don't create an empty dictionary, leave it invalid - m_sys_module_dict (false), // Don't create an empty dictionary, leave it invalid + m_session_dict(nullptr), + m_sys_module_dict(nullptr), m_run_one_line_function (), m_run_one_line_str_global (), m_dictionary_name (interpreter.GetDebugger().GetInstanceName().AsCString()), -- cgit v1.1