[Lldb-commits] [lldb] r354100 - Fix for build bot problem from last change
Aaron Smith via lldb-commits
lldb-commits at lists.llvm.org
Thu Feb 14 22:14:00 PST 2019
Author: asmith
Date: Thu Feb 14 22:13:59 2019
New Revision: 354100
URL: http://llvm.org/viewvc/llvm-project?rev=354100&view=rev
Log:
Fix for build bot problem from last change
Modified:
lldb/trunk/source/Plugins/Process/Windows/Common/ProcessWindows.cpp
Modified: lldb/trunk/source/Plugins/Process/Windows/Common/ProcessWindows.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Windows/Common/ProcessWindows.cpp?rev=354100&r1=354099&r2=354100&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Windows/Common/ProcessWindows.cpp (original)
+++ lldb/trunk/source/Plugins/Process/Windows/Common/ProcessWindows.cpp Thu Feb 14 22:13:59 2019
@@ -865,10 +865,10 @@ lldb::addr_t ProcessWindows::GetImageInf
}
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) {
More information about the lldb-commits
mailing list