1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Fix an assertion fault that occurs with SQLITE_THREADSAFE=0. (CVS 5799)

FossilOrigin-Name: 28bba42b338afd63e1dad9f431d631f6f3027275
This commit is contained in:
drh
2008-10-11 15:20:04 +00:00
parent f8cecdab84
commit 99655beecf
3 changed files with 8 additions and 10 deletions

View File

@@ -14,7 +14,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
** $Id: main.c,v 1.505 2008/10/10 17:41:29 drh Exp $
** $Id: main.c,v 1.506 2008/10/11 15:20:05 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -216,9 +216,7 @@ int sqlite3_shutdown(void){
if( sqlite3GlobalConfig.isInit ){
sqlite3_os_end();
}
assert( sqlite3GlobalConfig.m.xShutdown!=0 );
sqlite3MallocEnd();
assert( sqlite3GlobalConfig.mutex.xMutexEnd!=0 );
sqlite3MutexEnd();
sqlite3GlobalConfig.isInit = 0;
return SQLITE_OK;