Minor memory leak.
This commit is contained in:
parent
e12f71586a
commit
f414fc4004
|
@ -536,6 +536,7 @@ list_ass_slice(PyListObject *a, int ilow, int ihigh, PyObject *v)
|
||||||
p = recycle = PyMem_NEW(PyObject *, (ihigh-ilow));
|
p = recycle = PyMem_NEW(PyObject *, (ihigh-ilow));
|
||||||
if (recycle == NULL) {
|
if (recycle == NULL) {
|
||||||
PyErr_NoMemory();
|
PyErr_NoMemory();
|
||||||
|
Py_XDECREF(v_as_SF);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -556,6 +557,7 @@ list_ass_slice(PyListObject *a, int ilow, int ihigh, PyObject *v)
|
||||||
if (list_resize(a, s+d) == -1) {
|
if (list_resize(a, s+d) == -1) {
|
||||||
if (recycle != NULL)
|
if (recycle != NULL)
|
||||||
PyMem_DEL(recycle);
|
PyMem_DEL(recycle);
|
||||||
|
Py_XDECREF(v_as_SF);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
item = a->ob_item;
|
item = a->ob_item;
|
||||||
|
|
Loading…
Reference in New Issue