Skip to content

Commit

Permalink
Fix creating function names without namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
robojumper committed Nov 28, 2024
1 parent ae39aa2 commit b70ca76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/ghidra_scripts/DecompMapToGhidra.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def update_addr(addr, mangled_name, create_function=False):
createLabel(addr, symbol_str, namespace, True, IMPORTED)

if create_function:
createFunction(addr, name_list[-1])
createFunction(addr, None)

if symbol_needs_history(mangled_name):
unit.setComment(PLATE_COMMENT, complete_plate_comment)
Expand Down

0 comments on commit b70ca76

Please sign in to comment.