diff options
author | Brett Cannon <bcannon@gmail.com> | 2011-02-04 20:24:02 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2011-02-04 20:24:02 (GMT) |
commit | e144507b0983399fb3dbcf6535cfbead22a6c5e4 (patch) | |
tree | 5fea96057e5cda3c96eb438f5c7d4b0e99c6b3c2 /Misc | |
parent | eefb97cb579f8822868ce98ace820da5788e9ff7 (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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. |