Skip to content

Commit

Permalink
Merge pull request #129 from N0fix/fix#106
Browse files Browse the repository at this point in the history
  • Loading branch information
williballenthin authored Jul 9, 2024
2 parents 011cb33 + 93771c5 commit 238dc52
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python/flare/idb2pat.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,7 @@ def make_func_sig(config, func):

sig += " %02X" % (alen)
sig += " %04X" % (crc)
# TODO: does this need to change for 64bit?
sig += " %04X" % (func.end_ea - func.start_ea)
sig += " %08X" % (func.end_ea - func.start_ea)

# this will be either " :%04d %s" or " :%08d %s"
public_format = " :%%0%dX %%s" % (config.pointer_size)
Expand Down

0 comments on commit 238dc52

Please sign in to comment.