summaryrefslogtreecommitdiff
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-09-27 20:23:41 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2016-09-27 20:23:41 +0300
commita12e7842a5f572afd6bde108f24931f9262f38ef (patch)
treea7bd0d9db6ec6a3c16cff1e2ac3a343a230dadd6 /Misc/NEWS
parent19f2327e7ee3cc307b8b59329c552583d29ffa57 (diff)
parentc0b7037d4fc0f85af858cfa56df4dca25fb8896f (diff)
downloadcpython-git-a12e7842a5f572afd6bde108f24931f9262f38ef.tar.gz
Issue #28275: Fixed possible use adter free in LZMADecompressor.decompress().
Original patch by John Leitch.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3ce38f8596..7cbc98c318 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -41,6 +41,9 @@ Core and Builtins
Library
-------
+- Issue #28275: Fixed possible use adter free in LZMADecompressor.decompress().
+ Original patch by John Leitch.
+
- Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation()
if pass invalid string-like object as a name. Patch by Xiang Zhang.