summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-09-26 21:16:25 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-09-26 21:16:25 (GMT)
commit9204a20452ff3de0c6c3f8937f2b006310675ca0 (patch)
tree214b3da42b742791f3adf4b846260be2c864c1e2 /Misc
parente2197d131290b59deb1ad47904e700b642ceffeb (diff)
parent22805ca54e1e5db4b66be1b28b0baac2b1b4b4de (diff)
downloadcpython-9204a20452ff3de0c6c3f8937f2b006310675ca0.zip
cpython-9204a20452ff3de0c6c3f8937f2b006310675ca0.tar.gz
cpython-9204a20452ff3de0c6c3f8937f2b006310675ca0.tar.bz2
Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation()
if pass invalid string-like object as a name. Patch by Xiang Zhang.
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 224f5f6..40f6307 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -47,6 +47,9 @@ Core and Builtins
Library
-------
+- Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation()
+ if pass invalid string-like object as a name. Patch by Xiang Zhang.
+
- Issue #18893: Fix invalid exception handling in Lib/ctypes/macholib/dyld.py.
Patch by Madison May.