diff options
author | Nadeem Vawda <nadeem.vawda@gmail.com> | 2012-11-11 02:15:32 (GMT) |
---|---|---|
committer | Nadeem Vawda <nadeem.vawda@gmail.com> | 2012-11-11 02:15:32 (GMT) |
commit | 7ee955550b27af117ddca61deb061e13423cf24b (patch) | |
tree | 5af7af0e38d0a8163b651250cf5b0c70c76253cc /Misc | |
parent | ee7889dec321654d1c50448de7987e1841dd3ad5 (diff) | |
download | cpython-7ee955550b27af117ddca61deb061e13423cf24b.zip cpython-7ee955550b27af117ddca61deb061e13423cf24b.tar.gz cpython-7ee955550b27af117ddca61deb061e13423cf24b.tar.bz2 |
Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to access previously-freed memory.
Patch by Serhiy Storchaka.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -159,6 +159,9 @@ Core and Builtins Library ------- +- Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to access + previously-freed memory. Patch by Serhiy Storchaka. + - Issue #16357: fix calling accept() on a SSLSocket created through SSLContext.wrap_socket(). Original patch by Jeff McNeil. |