# HG changeset patch # User John Beck # Date 1465852496 25200 # Node ID 0996b3bb223e125563e7b7327728e52a619045a7 # Parent a163ffb4ab141a7ebbcb8374cfa2acb11536accf 23571894 problem in UTILITY/PYTHON diff -r a163ffb4ab14 -r 0996b3bb223e components/python/python27/patches/25-zipimport.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/components/python/python27/patches/25-zipimport.patch Mon Jun 13 14:14:56 2016 -0700 @@ -0,0 +1,18 @@ +This patch comes from upstream: + +https://bugs.python.org/issue26171 + +--- a/Modules/zipimport.c ++++ b/Modules/zipimport.c +@@ -895,6 +895,11 @@ get_data(char *archive, PyObject *toc_en + PyMarshal_ReadShortFromFile(fp); /* local header size */ + file_offset += l; /* Start of file data */ + ++ if (data_size > LONG_MAX - 1) { ++ fclose(fp); ++ PyErr_NoMemory(); ++ return NULL; ++ } + raw_data = PyString_FromStringAndSize((char *)NULL, compress == 0 ? + data_size : data_size + 1); + if (raw_data == NULL) { diff -r a163ffb4ab14 -r 0996b3bb223e components/python/python34/patches/26-zipimport.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/components/python/python34/patches/26-zipimport.patch Mon Jun 13 14:14:56 2016 -0700 @@ -0,0 +1,18 @@ +This patch comes from upstream: + +https://bugs.python.org/issue26171 + +--- a/Modules/zipimport.c ++++ b/Modules/zipimport.c +@@ -1111,6 +1111,11 @@ get_data(PyObject *archive, PyObject *to + } + file_offset += l; /* Start of file data */ + ++ if (data_size > LONG_MAX - 1) { ++ fclose(fp); ++ PyErr_NoMemory(); ++ return NULL; ++ } + bytes_size = compress == 0 ? data_size : data_size + 1; + if (bytes_size == 0) + bytes_size++;