summaryrefslogtreecommitdiffstats
path: root/Objects/listobject.c
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2017-02-22 04:32:30 (GMT)
committerGitHub <noreply@github.com>2017-02-22 04:32:30 (GMT)
commit4cee049f5b6864066b8315e9b54de955e5487dfc (patch)
tree9c2e27f0eac06b5a07e10418722f5c063b3fbfed /Objects/listobject.c
parent3e8d6cb1892377394e4b11819c33fbac728ea9e0 (diff)
downloadcpython-4cee049f5b6864066b8315e9b54de955e5487dfc.zip
cpython-4cee049f5b6864066b8315e9b54de955e5487dfc.tar.gz
cpython-4cee049f5b6864066b8315e9b54de955e5487dfc.tar.bz2
bpo-27660: remove unnecessary overflow checks in list_resize (GH-189)
Diffstat (limited to 'Objects/listobject.c')
-rw-r--r--Objects/listobject.c19
1 files changed, 7 insertions, 12 deletions
diff --git a/Objects/listobject.c b/Objects/listobject.c
index 8994174..edd4a15 100644
--- a/Objects/listobject.c
+++ b/Objects/listobject.c
@@ -26,7 +26,7 @@ static int
list_resize(PyListObject *self, Py_ssize_t newsize)
{
PyObject **items;
- size_t new_allocated;
+ size_t new_allocated, num_allocated_bytes;
Py_ssize_t allocated = self->allocated;
/* Bypass realloc() when a previous overallocation is large enough
@@ -45,24 +45,19 @@ list_resize(PyListObject *self, Py_ssize_t newsize)
* sequence of appends() in the presence of a poorly-performing
* system realloc().
* The growth pattern is: 0, 4, 8, 16, 25, 35, 46, 58, 72, 88, ...
+ * Note: new_allocated won't overflow because the largest possible value
+ * is PY_SSIZE_T_MAX * (9 / 8) + 6 which always fits in a size_t.
*/
- new_allocated = (newsize >> 3) + (newsize < 9 ? 3 : 6);
-
- /* check for integer overflow */
- if (new_allocated > SIZE_MAX - newsize) {
+ new_allocated = (size_t)newsize + (newsize >> 3) + (newsize < 9 ? 3 : 6);
+ if (new_allocated > (size_t)PY_SSIZE_T_MAX / sizeof(PyObject *)) {
PyErr_NoMemory();
return -1;
- } else {
- new_allocated += newsize;
}
if (newsize == 0)
new_allocated = 0;
- items = self->ob_item;
- if (new_allocated <= (SIZE_MAX / sizeof(PyObject *)))
- PyMem_RESIZE(items, PyObject *, new_allocated);
- else
- items = NULL;
+ num_allocated_bytes = new_allocated * sizeof(PyObject *);
+ items = (PyObject **)PyMem_Realloc(self->ob_item, num_allocated_bytes);
if (items == NULL) {
PyErr_NoMemory();
return -1;