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

Fix an reference to an undefined variable introduced by the previous

checkin. (CVS 3343)

FossilOrigin-Name: 73ff3452a0e38f046b7b41bcf653cf5e6848471f
This commit is contained in:
drh
2006-08-08 15:42:59 +00:00
parent 0f7eb61108
commit 10cfdd5fa1
3 changed files with 9 additions and 7 deletions

View File

@@ -1597,7 +1597,9 @@ int sqlite3VdbeCursorMoveto(Cursor *p){
rc = sqlite3BtreeNext(p->pCursor, &res);
if( rc ) return rc;
}
#ifdef SQLITE_TEST
sqlite3_search_count++;
#endif
p->deferredMoveto = 0;
p->cacheStatus = CACHE_STALE;
}