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 24, 2024
1 parent b2efb15 commit 6e685d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/ghidra_irx/ghidra_irxAnalyzer.java
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +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.insert(0, "import_"), SourceType.ANALYSIS);
tbl.createLabel(addr, nameString, SourceType.ANALYSIS);
} catch (InvalidInputException e) {
return false;
}
Expand Down

0 comments on commit 6e685d1

Please sign in to comment.