Skip to content

Commit

Permalink
fix: Remove wrong parameter in get_arch call
Browse files Browse the repository at this point in the history
  • Loading branch information
A. Challande committed Mar 16, 2020
1 parent 06d0478 commit 67c4f72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/idabincat/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -1402,7 +1402,7 @@ def flags(self, index):

def all_taint_top(self):
for i in xrange(0, len(self.rows)):
size = ConfigHelpers.register_size(ConfigHelpers.get_arch(self.s.edit_config.analysis_ep),
size = ConfigHelpers.register_size(ConfigHelpers.get_arch(),
self.rows[i][0])
if size >= 8:
self.rows[i][-1] = "0?0x"+"F"*(size/4)
Expand Down

0 comments on commit 67c4f72

Please sign in to comment.