gh-87604: Avoid publishing list of active per-interpreter audit hooks via the gc module (GH-99373)

This commit is contained in:
Steve Dower 2022-11-14 21:39:18 +00:00 committed by GitHub
parent 3d9431983a
commit 4e4b13e8f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 20 additions and 0 deletions

View file

@ -431,6 +431,8 @@ sys_addaudithook_impl(PyObject *module, PyObject *hook)
if (interp->audit_hooks == NULL) {
return NULL;
}
/* Avoid having our list of hooks show up in the GC module */
PyObject_GC_UnTrack(interp->audit_hooks);
}
if (PyList_Append(interp->audit_hooks, hook) < 0) {