Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f9943ba

Browse files
committedMay 5, 2023·
fix dealloc
1 parent 130e7b5 commit f9943ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎Modules/_asynciomodule.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1591,7 +1591,7 @@ static void
15911591
FutureIter_dealloc(futureiterobject *it)
15921592
{
15931593
PyTypeObject *tp = Py_TYPE(it);
1594-
asyncio_state *state = get_asyncio_state_by_def((PyObject *)tp);
1594+
asyncio_state *state = get_asyncio_state_by_def((PyObject *)it);
15951595
PyObject_GC_UnTrack(it);
15961596
tp->tp_clear((PyObject *)it);
15971597

0 commit comments

Comments
 (0)
Please sign in to comment.