mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
merge 3.4 (#26171)
This commit is contained in:
commit
47b8ba22e3
2 changed files with 8 additions and 0 deletions
|
|
@ -1127,6 +1127,11 @@ get_data(PyObject *archive, PyObject *toc_entry)
|
|||
}
|
||||
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++;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue