summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2011-02-04 20:24:02 (GMT)
committerBrett Cannon <bcannon@gmail.com>2011-02-04 20:24:02 (GMT)
commite144507b0983399fb3dbcf6535cfbead22a6c5e4 (patch)
tree5fea96057e5cda3c96eb438f5c7d4b0e99c6b3c2 /Misc
parenteefb97cb579f8822868ce98ace820da5788e9ff7 (diff)
downloadcpython-e144507b0983399fb3dbcf6535cfbead22a6c5e4.zip
cpython-e144507b0983399fb3dbcf6535cfbead22a6c5e4.tar.gz
cpython-e144507b0983399fb3dbcf6535cfbead22a6c5e4.tar.bz2
There was a possibility that the initialization of _sqlite, when it failed,
would lead to a decref of a NULL. Fixes issue #11110.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5df056d..efb8488 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,6 +15,8 @@ Core and Builtins
Library
-------
+- Issue #11110: Fix a potential decref of a NULL in sqlite3.
+
- Issue #8275: Fix passing of callback arguments with ctypes under Win64.
Patch by Stan Mihai.