Skip to content

Commit 2eff37f

Browse files
committed
Merge remote-tracking branch 'origin/patch'
2 parents a950ecd + 7d3b5e1 commit 2eff37f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Ghidra/Features/Base/src/main/java/ghidra/app/util/opinion/ElfProgramBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3581,7 +3581,7 @@ public Symbol createSymbol(Address addr, String name, boolean isPrimary, boolean
35813581
SymbolTable symbolTable = program.getSymbolTable();
35823582
Symbol sym = symbolTable.createLabel(addr, name, namespace, SourceType.IMPORTED);
35833583
if (isPrimary) {
3584-
checkPrimary(sym);
3584+
sym = checkPrimary(sym);
35853585
}
35863586
if (pinAbsolute && !sym.isPinned()) {
35873587
sym.setPinned(true);

0 commit comments

Comments
 (0)