diff options
author | Michael Sartain <mikesart@valvesoftware.com> | 2013-06-17 15:35:42 +0000 |
---|---|---|
committer | Michael Sartain <mikesart@valvesoftware.com> | 2013-06-17 15:35:42 +0000 |
commit | c493bd1f593f9c2017097a515f4c46f9a56a90f3 (patch) | |
tree | 3100375f234ad3cb3c0ad5f4a8b436e69a00cb5d | |
parent | 28c2e33362cd0e98977ec511ff122847dda69b3e (diff) | |
download | bcm5719-llvm-c493bd1f593f9c2017097a515f4c46f9a56a90f3.tar.gz bcm5719-llvm-c493bd1f593f9c2017097a515f4c46f9a56a90f3.zip |
Remove extra modules.Append() as it causes dupes in the m_images array. (Used with image list, etc.)
llvm-svn: 184082
-rw-r--r-- | lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp b/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp index 58173f897eb..ee246b5f443 100644 --- a/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp +++ b/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp @@ -419,7 +419,6 @@ DynamicLoaderPOSIXDYLD::LoadModuleAtAddress(const FileSpec &file, addr_t base_ad else if ((module_sp = target.GetSharedModule(module_spec))) { UpdateLoadedSections(module_sp, base_addr); - modules.Append(module_sp); } return module_sp; |