Skip to content

Commit

Permalink
Add missing call to stepo command
Browse files Browse the repository at this point in the history
  • Loading branch information
reverser authored and dnivra committed Dec 17, 2013
1 parent f6e2c34 commit 8fc045a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gdbinit
Original file line number Diff line number Diff line change
Expand Up @@ -2389,7 +2389,7 @@ define stepoframework
set $_nextaddress = $pc + 0x3
end
# call *0x????????(%ebx) (0xFF93????????) ||
if ($_byte2 == 0x93 || $_byte2 == 0x94 || $_byte2 == 0x90 || $_byte2 == 0x92 || $_byte2 == 0x95)
if ($_byte2 == 0x93 || $_byte2 == 0x94 || $_byte2 == 0x90 || $_byte2 == 0x92 || $_byte2 == 0x95 || $_byte2 == 0x15)
set $_nextaddress = $pc + 6
end
# call *0x????????(%ebx,%eax,4) (0xFF94??????????)
Expand Down

0 comments on commit 8fc045a

Please sign in to comment.