diff options
Diffstat (limited to 'lldb/source/Plugins/Platform')
-rw-r--r-- | lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp b/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp index 4291f055849..5134466f627 100644 --- a/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp +++ b/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp @@ -206,7 +206,7 @@ PlatformRemoteGDBServer::GetModuleSpec (const FileSpec& module_file_spec, { Log *log = GetLogIfAnyCategoriesSet (LIBLLDB_LOG_PLATFORM); - const auto module_path = module_file_spec.GetPath (); + const auto module_path = module_file_spec.GetPath (false); if (!m_gdb_client.GetModuleInfo (module_file_spec, arch, module_spec)) { |