diff options
Diffstat (limited to 'lldb/source/Core/Module.cpp')
-rw-r--r-- | lldb/source/Core/Module.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/source/Core/Module.cpp b/lldb/source/Core/Module.cpp index f8e5b4e410c..4252ed4cb6c 100644 --- a/lldb/source/Core/Module.cpp +++ b/lldb/source/Core/Module.cpp @@ -1262,7 +1262,9 @@ Module::SetSymbolFileFileSpec (const FileSpec &file) if (section_list && symbol_file) { ObjectFile *obj_file = symbol_file->GetObjectFile(); - if (obj_file) + // Make sure we have an object file and that the symbol vendor's objfile isn't + // the same as the module's objfile before we remove any sections for it... + if (obj_file && obj_file != m_objfile_sp.get()) { size_t num_sections = section_list->GetNumSections (0); for (size_t idx = num_sections; idx > 0; --idx) |