summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNadeem Vawda <nadeem.vawda@gmail.com>2012-11-11 02:15:32 (GMT)
committerNadeem Vawda <nadeem.vawda@gmail.com>2012-11-11 02:15:32 (GMT)
commit7ee955550b27af117ddca61deb061e13423cf24b (patch)
tree5af7af0e38d0a8163b651250cf5b0c70c76253cc /Misc
parentee7889dec321654d1c50448de7987e1841dd3ad5 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 01517e1..ab18f03 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.