summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2004-07-29 10:56:55 (GMT)
committerArmin Rigo <arigo@tunes.org>2004-07-29 10:56:55 (GMT)
commitf414fc4004fde1118f15efe73f93e2d12d91d82c (patch)
treedaee59d88e8e60cc0d2741cc5dac91c65010eb2c /Objects
parente12f71586ac4d3387fa635dd6617b4f8ebed083a (diff)
downloadcpython-f414fc4004fde1118f15efe73f93e2d12d91d82c.zip
cpython-f414fc4004fde1118f15efe73f93e2d12d91d82c.tar.gz
cpython-f414fc4004fde1118f15efe73f93e2d12d91d82c.tar.bz2
Minor memory leak.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/listobject.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Objects/listobject.c b/Objects/listobject.c
index e9f37b3..ab8cc1f 100644
--- a/Objects/listobject.c
+++ b/Objects/listobject.c
@@ -536,6 +536,7 @@ list_ass_slice(PyListObject *a, int ilow, int ihigh, PyObject *v)
p = recycle = PyMem_NEW(PyObject *, (ihigh-ilow));
if (recycle == NULL) {
PyErr_NoMemory();
+ Py_XDECREF(v_as_SF);
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 (recycle != NULL)
PyMem_DEL(recycle);
+ Py_XDECREF(v_as_SF);
return -1;
}
item = a->ob_item;