summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorOren Milman <orenmn@gmail.com>2017-11-07 00:09:49 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2017-11-07 00:09:49 (GMT)
commitedb13ae48c17210fa4b2d40a6833ca09db5c121b (patch)
treeb794f824b29d8c6e82add09c00dc24985b3fe01e /Misc
parente56ab746a965277ffcc4396d8a0902b6e072d049 (diff)
downloadcpython-edb13ae48c17210fa4b2d40a6833ca09db5c121b.zip
cpython-edb13ae48c17210fa4b2d40a6833ca09db5c121b.tar.gz
cpython-edb13ae48c17210fa4b2d40a6833ca09db5c121b.tar.bz2
bpo-31764: Prevent a crash in sqlite3.Cursor.close() in case the Cursor object is uninitialized (#3958)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2017-10-11-22-18-04.bpo-31764.EMyIkK.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-10-11-22-18-04.bpo-31764.EMyIkK.rst b/Misc/NEWS.d/next/Library/2017-10-11-22-18-04.bpo-31764.EMyIkK.rst
new file mode 100644
index 0000000..a5a4ce5
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-10-11-22-18-04.bpo-31764.EMyIkK.rst
@@ -0,0 +1,2 @@
+Prevent a crash in ``sqlite3.Cursor.close()`` in case the ``Cursor`` object is
+uninitialized. Patch by Oren Milman.