diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-09-04 04:48:19 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-09-04 04:48:19 (GMT) |
commit | 4e63f7a2b4e3602c420c8ae59a16020b14f8ee13 (patch) | |
tree | d9767697d27b578b7bd7cd9cd9e789a541736553 /Misc | |
parent | df6b544ff6f342e8a64056e627867a70413bfdb0 (diff) | |
download | cpython-4e63f7a2b4e3602c420c8ae59a16020b14f8ee13.zip cpython-4e63f7a2b4e3602c420c8ae59a16020b14f8ee13.tar.gz cpython-4e63f7a2b4e3602c420c8ae59a16020b14f8ee13.tar.bz2 |
Issue #24989: Fixed buffer overread in BytesIO.readline() if a position is
set beyond size. Based on patch by John Leitch.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -15,6 +15,9 @@ Core and Builtins Library ------- +- Issue #24989: Fixed buffer overread in BytesIO.readline() if a position is + set beyond size. Based on patch by John Leitch. + - Issue #24913: Fix overrun error in deque.index(). Found by John Leitch and Bryce Darling. |