Merge pull request #64 from kwf2030/master

fix funlock error when call db.Close on windows
pull/65/head v1.3.1-coreos.3
Xiang Li 2017-10-31 18:10:58 -07:00 committed by GitHub
commit 3c6cbfb299
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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