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 9594942 commit b84fc0fCopy full SHA for b84fc0f
1 file changed
Modules/_sqlite/connection.c
@@ -715,6 +715,9 @@ void _pysqlite_final_callback(sqlite3_context* context)
715
#ifdef WITH_THREAD
716
PyGILState_Release(threadstate);
717
#endif
718
+ /* explicit return to avoid a compilation error if WITH_THREAD
719
+ is not defined */
720
+ return;
721
}
722
723
static void _pysqlite_drop_unused_statement_references(pysqlite_Connection* self)
0 commit comments