Skip to content

Commit 2d25167

Browse files
committed
Fix bad address
1 parent bdfe660 commit 2d25167

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/gc_free_threading.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1437,7 +1437,7 @@ deduce_unreachable_heap(PyInterpreterState *interp,
14371437
// Identify objects that are directly reachable from outside the GC heap
14381438
// by computing the difference between the refcount and the number of
14391439
// incoming references.
1440-
gc_visit_heaps(interp, &update_refs, &state);
1440+
gc_visit_heaps(interp, &update_refs, &state->base);
14411441

14421442
#ifdef GC_DEBUG
14431443
// Check that all objects are marked as unreachable and that the computed

0 commit comments

Comments
 (0)