Index: source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp =================================================================== --- source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp +++ source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp @@ -2154,6 +2154,12 @@ break; default: symbol_section_sp = section_list->GetSectionAtIndex(section_idx); + // If symbol type is Invalid then check for symbol section type + if (symbol.getType() == STT_NOTYPE && symbol_section_sp && + symbol_section_sp->GetType() > eSectionTypeDataObjCCFStrings && + symbol_section_sp->GetType() < eSectionTypeELFSymbolTable) + symbol_section_sp = nullptr; + break; }