summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNadeem Vawda <nadeem.vawda@gmail.com>2012-11-11 02:19:49 (GMT)
committerNadeem Vawda <nadeem.vawda@gmail.com>2012-11-11 02:19:49 (GMT)
commit9c40022e38ba250c84382e4a4e68a05c0024559d (patch)
tree81d54b2a6ff416414ef874ec23a470dc713a5bf2 /Misc
parent9ea64e38b5e1b947fef9e53e3f63994b79e264e7 (diff)
parentec6dfcffa05414e7ee29cfe88551a3d3dcdaafdc (diff)
downloadcpython-9c40022e38ba250c84382e4a4e68a05c0024559d.zip
cpython-9c40022e38ba250c84382e4a4e68a05c0024559d.tar.gz
cpython-9c40022e38ba250c84382e4a4e68a05c0024559d.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 2c80158..6d14ecf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -113,6 +113,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.