diff options
author | Aleksandr Urakov <aleksandr.urakov@jetbrains.com> | 2018-11-02 08:47:33 +0000 |
---|---|---|
committer | Aleksandr Urakov <aleksandr.urakov@jetbrains.com> | 2018-11-02 08:47:33 +0000 |
commit | 54bb316185dd6b4aa6e1760f2556d58077e8c50c (patch) | |
tree | f854d97ad1948fce6906637b2e363bb73cde7fb9 /lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp | |
parent | 8a3ef6f3c3603a9cb6f2cd21b70d739a14d931d7 (diff) | |
download | bcm5719-llvm-54bb316185dd6b4aa6e1760f2556d58077e8c50c.tar.gz bcm5719-llvm-54bb316185dd6b4aa6e1760f2556d58077e8c50c.zip |
[Windows] Fix Windows build after be053dd5a384a03da5a77552686900ddc7bfc178
llvm-svn: 345956
Diffstat (limited to 'lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp b/lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp index 65a0f0e793a..81ec25871c5 100644 --- a/lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp +++ b/lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp @@ -470,7 +470,7 @@ DebuggerThread::HandleLoadDllEvent(const LOAD_DLL_DEBUG_INFO &info, if (path_str.startswith("\\\\?\\")) path += 4; - FileSpec file_spec(path, false); + FileSpec file_spec(path); ModuleSpec module_spec(file_spec); lldb::addr_t load_addr = reinterpret_cast<lldb::addr_t>(info.lpBaseOfDll); |