We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents daf4555 + b84fc0f commit 340f712Copy full SHA for 340f712
1 file changed
Modules/_sqlite/connection.c
@@ -750,6 +750,9 @@ void _pysqlite_final_callback(sqlite3_context* context)
750
#ifdef WITH_THREAD
751
PyGILState_Release(threadstate);
752
#endif
753
+ /* explicit return to avoid a compilation error if WITH_THREAD
754
+ is not defined */
755
+ return;
756
}
757
758
static void _pysqlite_drop_unused_statement_references(pysqlite_Connection* self)
0 commit comments