Skip to content

Commit 199589c

Browse files
committed
Fix free threading offsets
1 parent edad4d1 commit 199589c

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
@@ -345,7 +345,7 @@ parse_coro_chain(
345345
uintptr_t gen_type_addr;
346346
int err = read_ptr(
347347
handle,
348-
coro_address + sizeof(void*),
348+
coro_address + offsets->pyobject.ob_type,
349349
&gen_type_addr);
350350
if (err) {
351351
return -1;

0 commit comments

Comments
 (0)