stateDB: Close the file descriptor even if stat failed.

This fixes Coverity CID 12897
This commit is contained in:
Klaas Freitag 2014-06-20 11:02:29 +02:00
Родитель e4f8a136f1
Коммит 85cdbd1f1d
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -155,6 +155,8 @@ static int _csync_statedb_check(const char *statedb) {
}
}
}
} else {
close(fd);
}
/* if it comes here, the database is broken and should be recreated. */
_tunlink(wstatedb);