diff options
author | Oren Milman <orenmn@gmail.com> | 2017-11-07 00:01:47 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-11-07 00:01:47 (GMT) |
commit | e56ab746a965277ffcc4396d8a0902b6e072d049 (patch) | |
tree | 96300bfc9afd03c0314da3d9ed9b100d0764a1e2 /Misc | |
parent | ad455cd9243319b896c86074ffeb3bf78a82f4ec (diff) | |
download | cpython-e56ab746a965277ffcc4396d8a0902b6e072d049.zip cpython-e56ab746a965277ffcc4396d8a0902b6e072d049.tar.gz cpython-e56ab746a965277ffcc4396d8a0902b6e072d049.tar.bz2 |
bpo-31770: Prevent a crash and refleaks when calling sqlite3.Cursor.__init__() more than once (#3968)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-10-12-18-45-38.bpo-31770.GV3MPx.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-10-12-18-45-38.bpo-31770.GV3MPx.rst b/Misc/NEWS.d/next/Library/2017-10-12-18-45-38.bpo-31770.GV3MPx.rst new file mode 100644 index 0000000..86c7b80 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-10-12-18-45-38.bpo-31770.GV3MPx.rst @@ -0,0 +1,2 @@ +Prevent a crash when calling the ``__init__()`` method of a +``sqlite3.Cursor`` object more than once. Patch by Oren Milman. |