diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-07-25 02:39:20 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-07-25 02:39:20 (GMT) |
commit | b93d8637a6bce5b1b61423dc6c8319fc82a31b13 (patch) | |
tree | 2bf465e8c89e54dc4989f126b7b8c20008e455a9 /Objects/listobject.c | |
parent | 32d2ce3561088eb0fbb3e63e9fcbc3a90491604a (diff) | |
download | cpython-b93d8637a6bce5b1b61423dc6c8319fc82a31b13.zip cpython-b93d8637a6bce5b1b61423dc6c8319fc82a31b13.tar.gz cpython-b93d8637a6bce5b1b61423dc6c8319fc82a31b13.tar.bz2 |
Issue #1621: Avoid signed overflow in list and tuple operations
Patch by Xiang Zhang.
Diffstat (limited to 'Objects/listobject.c')
-rw-r--r-- | Objects/listobject.c | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/Objects/listobject.c b/Objects/listobject.c index ddc0fee..0b2c8c1 100644 --- a/Objects/listobject.c +++ b/Objects/listobject.c @@ -488,9 +488,9 @@ list_concat(PyListObject *a, PyObject *bb) return NULL; } #define b ((PyListObject *)bb) - size = Py_SIZE(a) + Py_SIZE(b); - if (size < 0) + if (Py_SIZE(a) > PY_SSIZE_T_MAX - Py_SIZE(b)) return PyErr_NoMemory(); + size = Py_SIZE(a) + Py_SIZE(b); np = (PyListObject *) PyList_New(size); if (np == NULL) { return NULL; @@ -841,18 +841,20 @@ listextend(PyListObject *self, PyObject *b) return NULL; } m = Py_SIZE(self); - mn = m + n; - if (mn >= m) { + if (m > PY_SSIZE_T_MAX - n) { + /* m + n overflowed; on the chance that n lied, and there really + * is enough room, ignore it. If n was telling the truth, we'll + * eventually run out of memory during the loop. + */ + } + else { + mn = m + n; /* Make room. */ if (list_resize(self, mn) < 0) goto error; /* Make the list sane again. */ Py_SIZE(self) = m; } - /* Else m + n overflowed; on the chance that n lied, and there really - * is enough room, ignore it. If n was telling the truth, we'll - * eventually run out of memory during the loop. - */ /* Run iterator to exhaustion. */ for (;;) { |