Skip to content

Commit

Permalink
Merge pull request #12 from 0xKira/master
Browse files Browse the repository at this point in the history
Fix type error in get_name_ea_simple
  • Loading branch information
L4ys authored Apr 20, 2020
2 parents c6b4f86 + dce19cf commit dc5ee0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LazyIDA.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def parse_location(loc):
loc = int(loc, 16)
except ValueError:
try:
loc = idc.get_name_ea_simple(loc)
loc = idc.get_name_ea_simple(loc.encode())
except:
return idaapi.BADADDR
return loc
Expand Down

0 comments on commit dc5ee0c

Please sign in to comment.