Minor memory leak.

This commit is contained in:
Armin Rigo 2004-07-29 10:56:55 +00:00
parent e12f71586a
commit f414fc4004
1 changed files with 2 additions and 0 deletions

View File

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