Skip to content

Commit 3565a4d

Browse files
committed
fix step_over
1 parent 706f0f0 commit 3565a4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qiling/debugger/qdb/qdb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def do_step_over(self, *args) -> Optional[bool]:
236236
prophecy = self.predictor.predict()
237237

238238
if prophecy.going:
239-
cur_insn = disasm(self.ql, self.cur_addr)
239+
cur_insn = self.predictor.disasm(self.cur_addr)
240240
self.set_breakpoint(self.cur_addr + cur_insn.size, is_temp=True)
241241

242242
else:

0 commit comments

Comments
 (0)