bpo-38823: Clean up refleaks in _contextvars initialization. (GH-17198)

https://bugs.python.org/issue38823
(cherry picked from commit 143a97f641)

Co-authored-by: Brandt Bucher <brandtbucher@gmail.com>
This commit is contained in:
Miss Islington (bot) 2019-11-16 16:14:45 -08:00 committed by GitHub
parent 825e91be04
commit 8a334af133
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -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;
} }