mirror of https://github.com/python/cpython
gh-113102: Fix typo in INSTRUMENTED_RESUME (GH-114349)
This commit is contained in:
parent
d1b031cc58
commit
2f2ddabd1a
|
@ -192,7 +192,7 @@ dummy_func(
|
|||
ERROR_IF(err, error);
|
||||
if (frame->instr_ptr != this_instr) {
|
||||
/* Instrumentation has jumped */
|
||||
next_instr = this_instr;
|
||||
next_instr = frame->instr_ptr;
|
||||
DISPATCH();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3156,7 +3156,7 @@
|
|||
if (err) goto error;
|
||||
if (frame->instr_ptr != this_instr) {
|
||||
/* Instrumentation has jumped */
|
||||
next_instr = this_instr;
|
||||
next_instr = frame->instr_ptr;
|
||||
DISPATCH();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue