Fixed Go To for functions with default names so that a table of choices

is not shown
This commit is contained in:
dragonmacher 2024-11-19 15:09:12 -05:00
parent 9421ec0ab0
commit 68bb1e182a

View File

@ -184,7 +184,9 @@ public class SymbolSearcher {
return;
}
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) {