Fix windows build for 6fa1b4ff4

This commit is contained in:
Pavel Labath 2021-10-25 11:12:39 +02:00
parent 0e5a4147e5
commit 1397c56d7a
1 changed files with 1 additions and 1 deletions

View File

@ -624,7 +624,7 @@ lldb::addr_t ProcessWindows::GetImageInfoAddress() {
DynamicLoaderWindowsDYLD *ProcessWindows::GetDynamicLoader() {
if (m_dyld_up.get() == NULL)
m_dyld_up.reset(DynamicLoader::FindPlugin(
this, DynamicLoaderWindowsDYLD::GetPluginNameStatic().GetCString()));
this, DynamicLoaderWindowsDYLD::GetPluginNameStatic()));
return static_cast<DynamicLoaderWindowsDYLD *>(m_dyld_up.get());
}