diff options
author | Oleksiy Vyalov <ovyalov@google.com> | 2014-11-17 22:42:28 +0000 |
---|---|---|
committer | Oleksiy Vyalov <ovyalov@google.com> | 2014-11-17 22:42:28 +0000 |
commit | 5453933867feb886b3c72160dc5d0882e6417fe9 (patch) | |
tree | 03ad68b635448931ca643e6f68019975f06ecfe8 /lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp | |
parent | 8922a17af3fa0da165c0f49273c6fb7228163edd (diff) | |
download | bcm5719-llvm-5453933867feb886b3c72160dc5d0882e6417fe9.tar.gz bcm5719-llvm-5453933867feb886b3c72160dc5d0882e6417fe9.zip |
Fix broken NativeProcessLinux.cpp after signature change of ResolveExecutable.
llvm-svn: 222184
Diffstat (limited to 'lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp index 8ba3e69db42..56330e069ec 100644 --- a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp +++ b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp @@ -162,7 +162,7 @@ namespace ModuleSpec exe_module_spec(process_info.GetExecutableFile(), platform.GetSystemArchitecture ()); FileSpecList executable_search_paths (Target::GetDefaultExecutableSearchPaths ()); Error error = platform.ResolveExecutable( - process_info.GetExecutableFile (), + exe_module_spec, exe_module_sp, executable_search_paths.GetSize () ? &executable_search_paths : NULL); |