Merge pull request #44 from lorneli/bbolt_tx

tx: just close file once in WriteTo function
pull/51/merge
Anthony Romano 2017-09-14 00:21:27 -07:00 committed by GitHub
commit 27600282c6
1 changed files with 6 additions and 2 deletions

8
tx.go
View File

@ -317,7 +317,11 @@ func (tx *Tx) WriteTo(w io.Writer) (n int64, err error) {
if err != nil {
return 0, err
}
defer func() { _ = f.Close() }()
defer func() {
if cerr := f.Close(); err == nil {
err = cerr
}
}()
// Generate a meta page. We use the same page data for both meta pages.
buf := make([]byte, tx.db.pageSize)
@ -356,7 +360,7 @@ func (tx *Tx) WriteTo(w io.Writer) (n int64, err error) {
return n, err
}
return n, f.Close()
return n, nil
}
// CopyFile copies the entire database to file at the given path.