Skip to content

Commit 9e87032

Browse files
committed
Fix free threading offsets AGAIN
1 parent 199589c commit 9e87032

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_remotedebuggingmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ parse_coro_chain(
429429
uintptr_t gi_await_addr_type_addr;
430430
int err = read_ptr(
431431
handle,
432-
gi_await_addr + sizeof(void*),
432+
gi_await_addr + offsets->pyobject.ob_type,
433433
&gi_await_addr_type_addr);
434434
if (err) {
435435
return -1;

0 commit comments

Comments
 (0)