Commit 47b8ba22 authored by Benjamin Peterson's avatar Benjamin Peterson

merge 3.4 (#26171)

parents d4d7737c c4032da2
...@@ -50,6 +50,9 @@ Core and Builtins ...@@ -50,6 +50,9 @@ Core and Builtins
__bytes__, __trunc__, and __float__ returning instances of subclasses of __bytes__, __trunc__, and __float__ returning instances of subclasses of
bytes, int, and float to subclasses of bytes, int, and float correspondingly. bytes, int, and float to subclasses of bytes, int, and float correspondingly.
- Issue #26171: Fix possible integer overflow and heap corruption in
zipimporter.get_data().
Library Library
------- -------
......
...@@ -1127,6 +1127,11 @@ get_data(PyObject *archive, PyObject *toc_entry) ...@@ -1127,6 +1127,11 @@ get_data(PyObject *archive, PyObject *toc_entry)
} }
file_offset += l; /* Start of file data */ 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; bytes_size = compress == 0 ? data_size : data_size + 1;
if (bytes_size == 0) if (bytes_size == 0)
bytes_size++; bytes_size++;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment