mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
plug possible refleak (closes #13199)
This commit is contained in:
parent
53e4a9a763
commit
2963fe0711
1 changed files with 6 additions and 2 deletions
|
@ -320,9 +320,13 @@ slice_richcompare(PyObject *v, PyObject *w, int op)
|
|||
}
|
||||
|
||||
t1 = PyTuple_New(3);
|
||||
t2 = PyTuple_New(3);
|
||||
if (t1 == NULL || t2 == NULL)
|
||||
if (t1 == NULL)
|
||||
return NULL;
|
||||
t2 = PyTuple_New(3);
|
||||
if (t2 == NULL) {
|
||||
Py_DECREF(t1);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
PyTuple_SET_ITEM(t1, 0, ((PySliceObject *)v)->start);
|
||||
PyTuple_SET_ITEM(t1, 1, ((PySliceObject *)v)->stop);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue