fix funlock error when call db.Close on windows

pull/64/head
kwf2030 2017-11-01 08:55:55 +08:00
parent 60725ac8b2
commit 434419a2a0
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ func flock(db *DB, mode os.FileMode, exclusive bool, timeout time.Duration) erro
if timeout != 0 {
t = time.Now()
}
fd := db.file.Fd()
fd := f.Fd()
var flag uint32 = flagLockFailImmediately
if exclusive {
flag |= flagLockExclusive