Clean up file descriptors on failed database initialization

Fixes an issue where failing to open a non-existent database in ReadOnly
mode would make you unable to properly initialize it in ReadWrite mode
afterwards due to a hanging lock.
pull/89/head
CJ DiMaggio 2017-08-29 19:28:00 -04:00 committed by Gyuho Lee
parent d57ee90507
commit 818c231b78
1 changed files with 3 additions and 0 deletions

3
db.go
View File

@ -213,10 +213,13 @@ func Open(path string, mode os.FileMode, options *Options) (*DB, error) {
// Initialize the database if it doesn't exist.
if info, err := db.file.Stat(); err != nil {
_ = db.close()
return nil, err
} else if info.Size() == 0 {
// Initialize new files with meta pages.
if err := db.init(); err != nil {
// clean up file descriptor on initialization fail
_ = db.close()
return nil, err
}
} else {