1
0
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:
dan
2009-12-14 15:17:27 +00:00
parent 971742058f
commit c007646318
3 changed files with 10 additions and 8 deletions

View File

@ -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