Skip to content

Commit

Permalink
Merge pull request #56 from matan1008/bugfix/create-symbol-type-error
Browse files Browse the repository at this point in the history
ida_plugin: Fix TypeError in create_symbol
  • Loading branch information
doronz88 authored Dec 8, 2024
2 parents 487f0a2 + 3c20692 commit d5f37c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fa/ida_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def create_symbol(self):
continue

opcode = binascii.hexlify(idc.get_bytes(ea, opcode_size))
formatted_hex = ' '.join(opcode[i:i + 2] for i in
formatted_hex = ' '.join(opcode[i:i + 2].decode() for i in
range(0, len(opcode), 2))
find_bytes_ida += formatted_hex + ' '

Expand Down

0 comments on commit d5f37c4

Please sign in to comment.