summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNadeem Vawda <nadeem.vawda@gmail.com>2012-11-11 02:14:56 (GMT)
committerNadeem Vawda <nadeem.vawda@gmail.com>2012-11-11 02:14:56 (GMT)
commit3c30970d2910c6a6411bd8e1c0e2fe1bdfb99726 (patch)
tree5891d449abcc2f9b27035b27688b3ac97c91f06d /Misc
parent252f4dc6c9a418f83749bbfe76b672c800e6a08b (diff)
downloadcpython-3c30970d2910c6a6411bd8e1c0e2fe1bdfb99726.zip
cpython-3c30970d2910c6a6411bd8e1c0e2fe1bdfb99726.tar.gz
cpython-3c30970d2910c6a6411bd8e1c0e2fe1bdfb99726.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 93aec6b..a4a4105 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -140,6 +140,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 #16350: zlib.decompressobj().decompress() now accumulates data from
successive calls after EOF in unused_data, instead of only saving the argument
to the last call. decompressobj().flush() now correctly sets unused_data and