Fix for build bot problem from last change
authorAaron Smith <aaron.smith@microsoft.com>
Fri, 15 Feb 2019 06:13:59 +0000 (06:13 +0000)
committerAaron Smith <aaron.smith@microsoft.com>
Fri, 15 Feb 2019 06:13:59 +0000 (06:13 +0000)
llvm-svn: 354100

lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp

index 93df360..f3e8b7f 100644 (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) {