Merge pull request #4129 from etiktin/fix_4127

Fix freeing asar fd on Windows
This commit is contained in:
Cheng Zhao 2016-01-16 11:41:28 +08:00
Родитель 1b0da44f38 85449e953e
Коммит d779f8d898
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -130,6 +130,7 @@ Archive::Archive(const base::FilePath& path)
Archive::~Archive() { Archive::~Archive() {
#if defined(OS_WIN) #if defined(OS_WIN)
file_.Close();
_close(fd_); _close(fd_);
#endif #endif
} }