From: Erlend E. Aasland Date: Fri, 2 Jun 2023 16:44:24 +0000 (+0200) Subject: gh-104614: Fix potential ref. leak in _testcapimodule/get_basic_static_type() (#105225) X-Git-Tag: v3.13.0a1~1915 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e01b04c9075c6468ed57bc883693ec2a06a6dd8e;p=thirdparty%2FPython%2Fcpython.git gh-104614: Fix potential ref. leak in _testcapimodule/get_basic_static_type() (#105225) --- diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index 38c2d1a91af3..3acc7575cfe8 100644 --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c @@ -2671,13 +2671,15 @@ get_basic_static_type(PyObject *self, PyObject *args) PyTypeObject *cls = &BasicStaticTypes[num_basic_static_types_used++]; if (base != NULL) { - cls->tp_base = (PyTypeObject *)Py_NewRef(base); cls->tp_bases = Py_BuildValue("(O)", base); if (cls->tp_bases == NULL) { return NULL; } + cls->tp_base = (PyTypeObject *)Py_NewRef(base); } if (PyType_Ready(cls) < 0) { + Py_DECREF(cls->tp_bases); + Py_DECREF(cls->tp_base); return NULL; } return (PyObject *)cls;