diff options
Diffstat (limited to 'lib/libsqlite3/src/global.c')
-rw-r--r-- | lib/libsqlite3/src/global.c | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/lib/libsqlite3/src/global.c b/lib/libsqlite3/src/global.c index 1ee3f6436f9..2c14b58abd9 100644 --- a/lib/libsqlite3/src/global.c +++ b/lib/libsqlite3/src/global.c @@ -173,15 +173,22 @@ SQLITE_WSD struct Sqlite3Config sqlite3Config = { 0, /* isMutexInit */ 0, /* isMallocInit */ 0, /* isPCacheInit */ - 0, /* pInitMutex */ 0, /* nRefInitMutex */ + 0, /* pInitMutex */ 0, /* xLog */ 0, /* pLogArg */ - 0, /* bLocaltimeFault */ #ifdef SQLITE_ENABLE_SQLLOG 0, /* xSqllog */ - 0 /* pSqllogArg */ + 0, /* pSqllogArg */ +#endif +#ifdef SQLITE_VDBE_COVERAGE + 0, /* xVdbeBranch */ + 0, /* pVbeBranchArg */ +#endif +#ifndef SQLITE_OMIT_BUILTIN_TEST + 0, /* xTestCallback */ #endif + 0 /* bLocaltimeFault */ }; /* |