mirror of
https://github.com/python/cpython.git
synced 2025-12-12 12:01:11 +00:00
bpo-38823: Clean up refleaks in _contextvars initialization. (GH-17198)
https://bugs.python.org/issue38823
This commit is contained in:
parent
c3f6bdc332
commit
143a97f641
1 changed files with 3 additions and 0 deletions
|
|
@ -52,6 +52,7 @@ PyInit__contextvars(void)
|
||||||
(PyObject *)&PyContext_Type) < 0)
|
(PyObject *)&PyContext_Type) < 0)
|
||||||
{
|
{
|
||||||
Py_DECREF(&PyContext_Type);
|
Py_DECREF(&PyContext_Type);
|
||||||
|
Py_DECREF(m);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -60,6 +61,7 @@ PyInit__contextvars(void)
|
||||||
(PyObject *)&PyContextVar_Type) < 0)
|
(PyObject *)&PyContextVar_Type) < 0)
|
||||||
{
|
{
|
||||||
Py_DECREF(&PyContextVar_Type);
|
Py_DECREF(&PyContextVar_Type);
|
||||||
|
Py_DECREF(m);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -68,6 +70,7 @@ PyInit__contextvars(void)
|
||||||
(PyObject *)&PyContextToken_Type) < 0)
|
(PyObject *)&PyContextToken_Type) < 0)
|
||||||
{
|
{
|
||||||
Py_DECREF(&PyContextToken_Type);
|
Py_DECREF(&PyContextToken_Type);
|
||||||
|
Py_DECREF(m);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue