Minor changes.

This commit is contained in:
vng 2012-10-11 23:08:31 +03:00 committed by Alex Zolotarev
parent 7ce5a12821
commit 0d7ab1801d

View file

@ -242,8 +242,9 @@ bool CopyFile(string const & fOld, string const & fNew)
if (ifs.is_open() && ofs.is_open())
{
ofs << ifs.rdbuf();
ofs.flush();
if (ofs.bad() || ofs.fail())
if (ofs.fail())
{
// Well, specification says that exception is thrown for critical errors.
// So just log stream fail state and continue.