summaryrefslogtreecommitdiff
path: root/Objects
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-10-15 11:48:41 -0400
committerBenjamin Peterson <benjamin@python.org>2014-10-15 11:48:41 -0400
commit1cbb3fe775c210459f53386b8172f5f2965ee33b (patch)
tree718e76fe1cc9af45ccae267245787fce8fc913ce /Objects
parentfd39a89e0e09de5460626a68e9e443fe0c103c14 (diff)
parente1bd38c03c16cd27227b3148d2be0ef1ab678448 (diff)
downloadcpython-git-1cbb3fe775c210459f53386b8172f5f2965ee33b.tar.gz
merge 3.3 (#22643)
Diffstat (limited to 'Objects')
-rw-r--r--Objects/unicodeobject.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index c3f75fd551..3132fd4826 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -9651,6 +9651,11 @@ case_operation(PyObject *self,
kind = PyUnicode_KIND(self);
data = PyUnicode_DATA(self);
length = PyUnicode_GET_LENGTH(self);
+ if (length > PY_SSIZE_T_MAX / 3 ||
+ length > PY_SIZE_MAX / (3 * sizeof(Py_UCS4))) {
+ PyErr_SetString(PyExc_OverflowError, "string is too long");
+ return NULL;
+ }
tmp = PyMem_MALLOC(sizeof(Py_UCS4) * 3 * length);
if (tmp == NULL)
return PyErr_NoMemory();