forked from OSchip/llvm-project
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
This commit is contained in:
parent
087f437b60
commit
e05b2efe27
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue