From 15e0bf6e5a57e60edf4a576db2dcb9bc07a163bf Mon Sep 17 00:00:00 2001 From: kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com> Date: Sat, 22 Jun 2024 09:59:29 +0000 Subject: [chore] update github.com/ncruces/go-sqlite3 -> v0.16.3 (#3029) --- vendor/github.com/ncruces/go-sqlite3/vfs/shm_bsd.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'vendor/github.com/ncruces/go-sqlite3/vfs/shm_bsd.go') diff --git a/vendor/github.com/ncruces/go-sqlite3/vfs/shm_bsd.go b/vendor/github.com/ncruces/go-sqlite3/vfs/shm_bsd.go index 8c2abee81..ffeb3e0a0 100644 --- a/vendor/github.com/ncruces/go-sqlite3/vfs/shm_bsd.go +++ b/vendor/github.com/ncruces/go-sqlite3/vfs/shm_bsd.go @@ -128,10 +128,11 @@ func (s *vfsShm) shmOpen() (rc _ErrorCode) { } // Lock and truncate the file, if not readonly. + // The lock is only released by closing the file. if s.readOnly { rc = _READONLY_CANTINIT } else { - if rc := osWriteLock(f, 0, 0, 0); rc != _OK { + if rc := osLock(f, unix.LOCK_EX|unix.LOCK_NB, _IOERR_LOCK); rc != _OK { return rc } if err := f.Truncate(0); err != nil { -- cgit v1.2.3