mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-21 11:31:43 +00:00
Fixed Go To for functions with default names so that a table of choices
is not shown
This commit is contained in:
parent
9421ec0ab0
commit
68bb1e182a
@ -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