10000 gh-115874: Fix segfault in `FutureIter_dealloc` by savannahostrowski · Pull Request #117741 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-115874: Fix segfault in FutureIter_dealloc #117741

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Apr 19, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update comment for clarity
  • Loading branch information
savannahostrowski committed Apr 18, 2024
commit 7af78114732daff97585cb71d9050a65f8cdca75
5 changes: 3 additions & 2 deletions Modules/_asynciomodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -1611,8 +1611,9 @@ FutureIter_dealloc(futureiterobject *it)
tp->tp_clear((PyObject *)it);

// GH-115874: We can't use PyType_GetModuleByDef here as the type might have
// already been cleared. This is also why we must check if ht_module != NULL.
// Subclasses also cannot make use of the free list.
// already been cleared, which is also why we must check if ht_module != NULL.
// Due to this restriction, subclasses that belong to a different module
// will not be able to use the free list.
if (module && _PyModule_GetDef(module) == &_asynciomodule) {
state = get_asyncio_state(module);
}
Expand Down
0