(Merge 3.3) Fix compilation of the _sqlite module if threads are disabled

This commit is contained in:
Victor Stinner 2013-08-28 01:45:39 +02:00
commit 340f712b84

View file

@ -750,6 +750,9 @@ error:
#ifdef WITH_THREAD
PyGILState_Release(threadstate);
#endif
/* explicit return to avoid a compilation error if WITH_THREAD
is not defined */
return;
}
static void _pysqlite_drop_unused_statement_references(pysqlite_Connection* self)