mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Handle an unhandled OOM error code that occurs in fts3 with SQLITE_TEST defined.
FossilOrigin-Name: 82b069998e10b1a9a1d5e6bd85877d7b654c78bd
This commit is contained in:
@ -2269,7 +2269,9 @@ int sqlite3Fts3Init(sqlite3 *db){
|
||||
}
|
||||
|
||||
#ifdef SQLITE_TEST
|
||||
sqlite3Fts3ExprInitTestInterface(db);
|
||||
if( rc==SQLITE_OK ){
|
||||
rc = sqlite3Fts3ExprInitTestInterface(db);
|
||||
}
|
||||
#endif
|
||||
|
||||
/* Create the virtual table wrapper around the hash-table and overload
|
||||
|
Reference in New Issue
Block a user