mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
bpo-44562: Remove invalid PyObject_GC_Del from error path of types.GenericAlias … (GH-27016)
(cherry picked from commit d33943a6c3
)
Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com>
This commit is contained in:
parent
9bf7c2d638
commit
68330b681a
2 changed files with 5 additions and 3 deletions
|
@ -603,7 +603,7 @@ ga_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
|
|||
return NULL;
|
||||
}
|
||||
if (!setup_ga(self, origin, arguments)) {
|
||||
type->tp_free((PyObject *)self);
|
||||
Py_DECREF(self);
|
||||
return NULL;
|
||||
}
|
||||
return (PyObject *)self;
|
||||
|
@ -650,10 +650,10 @@ Py_GenericAlias(PyObject *origin, PyObject *args)
|
|||
if (alias == NULL) {
|
||||
return NULL;
|
||||
}
|
||||
_PyObject_GC_TRACK(alias);
|
||||
if (!setup_ga(alias, origin, args)) {
|
||||
PyObject_GC_Del((PyObject *)alias);
|
||||
Py_DECREF(alias);
|
||||
return NULL;
|
||||
}
|
||||
_PyObject_GC_TRACK(alias);
|
||||
return (PyObject *)alias;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue