Remove call to qc_sqlite_thread_end in qc_sqlite_process_end

Since the thread initialization was removed from the process
initialization function, the thread finish function should not be called
in the process finish function.
This commit is contained in:
Markus Mäkelä 2017-09-17 11:55:12 +03:00
parent 3f0a738e08
commit eab7b7e2a3

View File

@ -4453,8 +4453,6 @@ static void qc_sqlite_process_end(void)
finish_builtin_functions();
qc_sqlite_thread_end();
sqlite3_shutdown();
this_unit.initialized = false;
}