Skip to content

Commit

Permalink
Update ghidra_irxAnalyzer.java
Browse files Browse the repository at this point in the history
  • Loading branch information
israpps authored Apr 25, 2024
1 parent 6e685d1 commit 56546e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/ghidra_irx/ghidra_irxAnalyzer.java
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,10 @@ public boolean added(Program program, AddressSetView set, TaskMonitor monitor, M
}

String nameString = new String(namebytes).split("\0")[0];
nameString = "imports_" + nameString;


try {
tbl.createLabel(addr, nameString, SourceType.ANALYSIS);
tbl.createLabel(addr, "imports_" + nameString, SourceType.ANALYSIS);
} catch (InvalidInputException e) {
return false;
}
Expand Down

0 comments on commit 56546e1

Please sign in to comment.