Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eefb97c commit e144507Copy full SHA for e144507
2 files changed
Misc/NEWS
@@ -15,6 +15,8 @@ Core and Builtins
15
Library
16
-------
17
18
+- Issue #11110: Fix a potential decref of a NULL in sqlite3.
19
+
20
- Issue #8275: Fix passing of callback arguments with ctypes under Win64.
21
Patch by Stan Mihai.
22
Modules/_sqlite/module.c
@@ -329,7 +329,7 @@ PyMODINIT_FUNC PyInit__sqlite3(void)
329
(pysqlite_statement_setup_types() < 0) ||
330
(pysqlite_prepare_protocol_setup_types() < 0)
331
) {
332
- Py_DECREF(module);
+ Py_XDECREF(module);
333
return NULL;
334
}
335
0 commit comments