components/python/python27/patches/25-zipimport.patch
branchs11u3-sru
changeset 6185 0996b3bb223e
--- /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) {