diff options
Diffstat (limited to 'lldb/source/Target/Process.cpp')
-rw-r--r-- | lldb/source/Target/Process.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Target/Process.cpp b/lldb/source/Target/Process.cpp index a8bd19e1beb..c5d470d029e 100644 --- a/lldb/source/Target/Process.cpp +++ b/lldb/source/Target/Process.cpp @@ -1586,7 +1586,7 @@ Process::Launch DidLaunch (); - m_dyld_ap.reset (DynamicLoader::FindPlugin(this, false)); + m_dyld_ap.reset (DynamicLoader::FindPlugin(this, NULL)); if (m_dyld_ap.get()) m_dyld_ap->DidLaunch(); @@ -1796,7 +1796,7 @@ Process::CompleteAttach () // We have complete the attach, now it is time to find the dynamic loader // plug-in - m_dyld_ap.reset (DynamicLoader::FindPlugin(this, false)); + m_dyld_ap.reset (DynamicLoader::FindPlugin(this, NULL)); if (m_dyld_ap.get()) m_dyld_ap->DidAttach(); |