mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
Fixed a typo in the section header type check.
This commit is contained in:
parent
fdc25113a1
commit
3f6ca95996
1 changed files with 1 additions and 1 deletions
|
@ -399,7 +399,7 @@ public class ElfHeader implements StructConverter, Writeable {
|
|||
section, section.getOffset(), section.getAddress(), section.getSize(),
|
||||
section.getEntrySize(), addendTypeReloc, symbolTable, sectionToBeRelocated));
|
||||
}
|
||||
else if (sectionHeaderType == ElfSectionHeaderConstants.SHT_ANDROID_RELA ||
|
||||
else if (sectionHeaderType == ElfSectionHeaderConstants.SHT_ANDROID_REL ||
|
||||
sectionHeaderType == ElfSectionHeaderConstants.SHT_ANDROID_RELA) {
|
||||
|
||||
for (ElfRelocationTable relocTable : relocationTableList) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue