aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authordan <dan@noemail.net>2020-09-04 17:30:59 +0000
committerdan <dan@noemail.net>2020-09-04 17:30:59 +0000
commit2b06b0769ed38e408b4d28406db44cda44bdbbcd (patch)
treea6cb364f5cf612762d5aea55100da3e8cba673e5 /src/main.c
parent52cfe0312a3e26267635d7bc06f145e62e9183ce (diff)
downloadsqlite-2b06b0769ed38e408b4d28406db44cda44bdbbcd.tar.gz
sqlite-2b06b0769ed38e408b4d28406db44cda44bdbbcd.zip
Ensure that the busy-handler count is reset at the end of each sqlite3_file_control() and sqlite3_prepare() (and _v2() and _v3()).
FossilOrigin-Name: 5dd05940617fb05ee2faf212b15afc3a8e9695318eccb76761b37359fea681d1
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 2cc092e92..cc1464f13 100644
--- a/src/main.c
+++ b/src/main.c
@@ -3852,7 +3852,9 @@ int sqlite3_file_control(sqlite3 *db, const char *zDbName, int op, void *pArg){
}
rc = SQLITE_OK;
}else{
+ int nSave = db->busyHandler.nBusy;
rc = sqlite3OsFileControl(fd, op, pArg);
+ db->busyHandler.nBusy = nSave;
}
sqlite3BtreeLeave(pBtree);
}