forked from organicmaps/organicmaps
Minor changes.
This commit is contained in:
parent
7ce5a12821
commit
0d7ab1801d
1 changed files with 2 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue