mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-21 11:31:43 +00:00
Merge remote-tracking branch 'origin/GP-1-dragonmacher-go-to-bug-fix'
This commit is contained in:
commit
4d96514f1b
@ -184,7 +184,9 @@ public class SymbolSearcher {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Symbol s = program.getSymbolTable().getPrimarySymbol(address);
|
Symbol s = program.getSymbolTable().getPrimarySymbol(address);
|
||||||
addSymbolIfMatches(s, locations);
|
if (s.isDynamic()) { // non-dynamic symbols have already been searched (ex, FUN_12345678)
|
||||||
|
addSymbolIfMatches(s, locations);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void searchDefinedSymbols(Program program, List<ProgramLocation> locations) {
|
private void searchDefinedSymbols(Program program, List<ProgramLocation> locations) {
|
||||||
|
Loading…
Reference in New Issue
Block a user