diff options
author | dan <dan@noemail.net> | 2020-09-04 17:30:59 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2020-09-04 17:30:59 +0000 |
commit | 2b06b0769ed38e408b4d28406db44cda44bdbbcd (patch) | |
tree | a6cb364f5cf612762d5aea55100da3e8cba673e5 /src/main.c | |
parent | 52cfe0312a3e26267635d7bc06f145e62e9183ce (diff) | |
download | sqlite-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.c | 2 |
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); } |