mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 12:00:04 +02:00
GT-2343: Fixing DYLD symbol address issue.
This commit is contained in:
parent
b6b9b27128
commit
e0d5d1e5e5
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ public class DyldCacheLocalSymbolsInfo implements StructConverter {
|
|||
nlistList = new ArrayList<>(nlistCount);
|
||||
localSymbolsEntryList = new ArrayList<>(entriesCount);
|
||||
|
||||
is32bit = !(architecture.getCpuType() == CpuTypes.CPU_TYPE_ARM_64 &&
|
||||
is32bit = !(architecture.getCpuType() == CpuTypes.CPU_TYPE_ARM_64 ||
|
||||
architecture.getCpuType() == CpuTypes.CPU_TYPE_X86_64);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue