mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +02:00
GP-5554: Fixed a bug that resulted in incorrect external addresses of
Mach-O undefined symbols (Closes #5941)
This commit is contained in:
parent
58979e0bfb
commit
cd3ba7fb07
1 changed files with 1 additions and 1 deletions
|
@ -743,7 +743,7 @@ public class MachoProgramBuilder {
|
|||
if (name != null && name.length() > 0) {
|
||||
program.getSymbolTable().createLabel(addr, name, SourceType.IMPORTED);
|
||||
program.getExternalManager()
|
||||
.addExtLocation(Library.UNKNOWN, name, addr, SourceType.IMPORTED);
|
||||
.addExtLocation(Library.UNKNOWN, name, null, SourceType.IMPORTED);
|
||||
}
|
||||
}
|
||||
catch (Exception e) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue