Skip to content

Commit

Permalink
Merge pull request #1414 from 0xling/master
Browse files Browse the repository at this point in the history
fix bug of cb_arm_fix_call
  • Loading branch information
serpilliere authored Feb 17, 2022
2 parents 895996e + c0af65e commit 53f1cbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miasm/arch/arm/disasm.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def cb_arm_fix_call(mdis, cur_block, offsets_to_dis):
if l2.name != "MOV":
return

values = viewvalues(mdis.mn.pc)
values = viewvalues(mdis.arch.pc)
if not l1.args[0] in values:
return
if not l2.args[1] in values:
Expand Down

0 comments on commit 53f1cbe

Please sign in to comment.