summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-01-28 21:01:59 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-01-28 21:01:59 (GMT)
commit75ff65ef963e7127cdb02d48cf0d1fea352a00da (patch)
tree5a6de16d28d7c1b241ae78f99a03e10b0eb0ee9c /Misc
parenteba63c4203322af73fd2a926bd20edc495717577 (diff)
downloadcpython-75ff65ef963e7127cdb02d48cf0d1fea352a00da.zip
cpython-75ff65ef963e7127cdb02d48cf0d1fea352a00da.tar.gz
cpython-75ff65ef963e7127cdb02d48cf0d1fea352a00da.tar.bz2
Issue #13806: The size check in audioop decompression functions was too strict and could reject valid compressed data.
Patch by Oleg Plakhotnyuk.
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 06cefe2..e02a7c9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -111,6 +111,9 @@ Core and Builtins
Library
-------
+- Issue #13806: The size check in audioop decompression functions was too
+ strict and could reject valid compressed data. Patch by Oleg Plakhotnyuk.
+
- Issue #13812: When a multiprocessing Process child raises an exception,
flush stderr after printing the exception traceback.