[Lldb-commits] [lldb] r222184 - Fix broken NativeProcessLinux.cpp after signature change of ResolveExecutable.

Oleksiy Vyalov ovyalov at google.com
Mon Nov 17 14:42:29 PST 2014


Author: ovyalov
Date: Mon Nov 17 16:42:28 2014
New Revision: 222184

URL: http://llvm.org/viewvc/llvm-project?rev=222184&view=rev
Log:
Fix broken NativeProcessLinux.cpp after signature change of ResolveExecutable.

Modified:
    lldb/trunk/source/Plugins/Process/Linux/NativeProcessLinux.cpp

Modified: lldb/trunk/source/Plugins/Process/Linux/NativeProcessLinux.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Linux/NativeProcessLinux.cpp?rev=222184&r1=222183&r2=222184&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Linux/NativeProcessLinux.cpp (original)
+++ lldb/trunk/source/Plugins/Process/Linux/NativeProcessLinux.cpp Mon Nov 17 16:42:28 2014
@@ -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);
 





More information about the lldb-commits mailing list