From 548e9a3e619fe0d2142a330bb3dcfacf0739efb5 Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Tue, 2 Oct 2012 06:04:17 +0000 Subject: Shared libraries on MacOSX were not properly being removed from the shared module list when re-running a debug session due to an error in: Module::MatchesModuleSpec() llvm-svn: 164991 --- lldb/source/Core/Module.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/source/Core/Module.cpp') diff --git a/lldb/source/Core/Module.cpp b/lldb/source/Core/Module.cpp index 7ef05d9c131..64a5ebdb722 100644 --- a/lldb/source/Core/Module.cpp +++ b/lldb/source/Core/Module.cpp @@ -1171,7 +1171,7 @@ Module::MatchesModuleSpec (const ModuleSpec &module_ref) const FileSpec &platform_file_spec = module_ref.GetPlatformFileSpec(); if (platform_file_spec) { - if (!FileSpec::Equal (platform_file_spec, m_platform_file, platform_file_spec.GetDirectory())) + if (!FileSpec::Equal (platform_file_spec, GetPlatformFileSpec (), platform_file_spec.GetDirectory())) return false; } -- cgit v1.2.3