summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2008-01-25 19:50:26 (GMT)
committerGuido van Rossum <guido@python.org>2008-01-25 19:50:26 (GMT)
commit8d5cf4ed5754b505d46f0d9742c9d1d04717c68d (patch)
treea65e3bae53ac572f83f09c7cc18f4e37a873edcb
parent3dbd4c536d685fff0ced7c0aa93d7da2949e8ea0 (diff)
downloadcpython-8d5cf4ed5754b505d46f0d9742c9d1d04717c68d.zip
cpython-8d5cf4ed5754b505d46f0d9742c9d1d04717c68d.tar.gz
cpython-8d5cf4ed5754b505d46f0d9742c9d1d04717c68d.tar.bz2
Rewrite the list_inline_repeat overflow check slightly differently.
-rw-r--r--Objects/listobject.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/Objects/listobject.c b/Objects/listobject.c
index 27f0a81..86110cb 100644
--- a/Objects/listobject.c
+++ b/Objects/listobject.c
@@ -502,7 +502,7 @@ list_repeat(PyListObject *a, Py_ssize_t n)
if (n && size/n != Py_SIZE(a))
return PyErr_NoMemory();
if (size == 0)
- return PyList_New(0);
+ return PyList_New(0);
np = (PyListObject *) PyList_New(size);
if (np == NULL)
return NULL;
@@ -669,11 +669,11 @@ static PyObject *
list_inplace_repeat(PyListObject *self, Py_ssize_t n)
{
PyObject **items;
- Py_ssize_t size, i, j, p, newsize;
+ Py_ssize_t size, i, j, p;
size = PyList_GET_SIZE(self);
- if (size == 0) {
+ if (size == 0 || n == 1) {
Py_INCREF(self);
return (PyObject *)self;
}
@@ -684,10 +684,11 @@ list_inplace_repeat(PyListObject *self, Py_ssize_t n)
return (PyObject *)self;
}
- newsize = size * n;
- if (newsize/n != size)
+ if (size > SSIZE_MAX / n) {
return PyErr_NoMemory();
- if (list_resize(self, newsize) == -1)
+ }
+
+ if (list_resize(self, size*n) == -1)
return NULL;
p = size;