]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-83004: Clean up refleak in _io initialisation (GH-98840)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 6 Nov 2022 14:03:52 +0000 (06:03 -0800)
committerGitHub <noreply@github.com>
Sun, 6 Nov 2022 14:03:52 +0000 (06:03 -0800)
(cherry picked from commit 1208037246eeab4c5c003f1651edfefb045e6fb7)

Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
Misc/NEWS.d/next/Library/2022-11-02-05-52-36.gh-issue-83004.LBl79O.rst [new file with mode: 0644]
Modules/_io/_iomodule.c

diff --git a/Misc/NEWS.d/next/Library/2022-11-02-05-52-36.gh-issue-83004.LBl79O.rst b/Misc/NEWS.d/next/Library/2022-11-02-05-52-36.gh-issue-83004.LBl79O.rst
new file mode 100644 (file)
index 0000000..4de17ab
--- /dev/null
@@ -0,0 +1 @@
+Clean up refleak on failed module initialisation in :mod:`_io`.
index 38ef24637b73183d5493816da9990922f9d52a3d..a7b2e984310d1801059a3128ac25f0de6f9c6984 100644 (file)
@@ -703,10 +703,10 @@ PyInit__io(void)
         goto fail;
 
     /* BlockingIOError, for compatibility */
-    Py_INCREF(PyExc_BlockingIOError);
-    if (PyModule_AddObject(m, "BlockingIOError",
-                           (PyObject *) PyExc_BlockingIOError) < 0)
+    if (PyModule_AddObjectRef(m, "BlockingIOError",
+                              (PyObject *) PyExc_BlockingIOError) < 0) {
         goto fail;
+    }
 
     // Set type base classes
     PyFileIO_Type.tp_base = &PyRawIOBase_Type;