From e05b2efe274316c221a695bc430df43ca2087a8e Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Wed, 9 Jan 2013 22:58:18 +0000 Subject: [PATCH] Fixed an issue the "process plugin" proxy object was trying to use the m_exe_ctx when it wasn't ok to do so. llvm-svn: 172014 --- lldb/source/Commands/CommandObjectProcess.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Commands/CommandObjectProcess.cpp b/lldb/source/Commands/CommandObjectProcess.cpp index 64e0c73b4393..b63089ed3a92 100644 --- a/lldb/source/Commands/CommandObjectProcess.cpp +++ b/lldb/source/Commands/CommandObjectProcess.cpp @@ -1094,7 +1094,7 @@ public: virtual CommandObject * GetProxyCommandObject() { - Process *process = m_exe_ctx.GetProcessPtr(); + Process *process = m_interpreter.GetExecutionContext().GetProcessPtr(); if (process) return process->GetPluginCommandObject(); return NULL;