1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-18 10:21:03 +03:00

Minor build cleanups and fix a harmless race condition in the OPFS part of tester1.js.

FossilOrigin-Name: 70ee6ee014bc4e2c1daa9b4a8909cf76ccecf32de1eb39055f20d3d0b1daa1bd
This commit is contained in:
stephan
2022-11-02 14:08:59 +00:00
parent 2cdcc7f01a
commit de6186e04f
6 changed files with 31 additions and 30 deletions

View File

@@ -1782,7 +1782,7 @@
sh = await fh.createSyncAccessHandle();
T.assert(fSize === await sh.getSize());
}finally{
if(sh) sh.close();
if(sh) await sh.close();
unlink();
}
}