diff options
author | Nadeem Vawda <nadeem.vawda@gmail.com> | 2012-11-11 02:14:56 (GMT) |
---|---|---|
committer | Nadeem Vawda <nadeem.vawda@gmail.com> | 2012-11-11 02:14:56 (GMT) |
commit | 3c30970d2910c6a6411bd8e1c0e2fe1bdfb99726 (patch) | |
tree | 5891d449abcc2f9b27035b27688b3ac97c91f06d /Misc | |
parent | 252f4dc6c9a418f83749bbfe76b672c800e6a08b (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |