Fix for build bot problem from last change

llvm-svn: 354100
This commit is contained in:
Aaron Smith 2019-02-15 06:13:59 +00:00
parent eb6671e7c8
commit 96b821071f
1 changed files with 3 additions and 3 deletions

View File

@ -865,10 +865,10 @@ lldb::addr_t ProcessWindows::GetImageInfoAddress() {
}
DynamicLoaderWindowsDYLD *ProcessWindows::GetDynamicLoader() {
if (m_dyld_ap.get() == NULL)
m_dyld_ap.reset(DynamicLoader::FindPlugin(
if (m_dyld_up.get() == NULL)
m_dyld_up.reset(DynamicLoader::FindPlugin(
this, DynamicLoaderWindowsDYLD::GetPluginNameStatic().GetCString()));
return static_cast<DynamicLoaderWindowsDYLD *>(m_dyld_ap.get());
return static_cast<DynamicLoaderWindowsDYLD *>(m_dyld_up.get());
}
void ProcessWindows::OnExitProcess(uint32_t exit_code) {