mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-18 05:10:55 -05:00
GP-2835 addressing code review comments
This commit is contained in:
@@ -113,7 +113,8 @@ public class FindFunctionsRFExampleScript extends GhidraScript {
|
||||
|
||||
//show the true function starts most similar to one of the false positives
|
||||
if (!falsePositives.isEmpty()) {
|
||||
SimilarStartsFinder finder = new SimilarStartsFinder(currentProgram, best);
|
||||
SimilarStartsFinder finder =
|
||||
new SimilarStartsFinder(currentProgram, currentProgram, best);
|
||||
List<SimilarStartRowObject> neighbors =
|
||||
finder.getSimilarFunctionStarts(falsePositives.get(0).getKey(), 10);
|
||||
printf("\nClosest function starts to false positive at %s :\n",
|
||||
|
||||
Reference in New Issue
Block a user