forked from organicmaps/organicmaps
Adding diagnostic info in case of my::RenameFileX error.
This commit is contained in:
parent
6fcb1e5510
commit
527712a401
1 changed files with 2 additions and 1 deletions
|
@ -280,7 +280,8 @@ class FileHttpRequest : public HttpRequest, public IHttpThreadCallback
|
|||
// Rename finished file to it's original name.
|
||||
if (Platform::IsFileExistsByFullPath(m_filePath))
|
||||
(void)my::DeleteFileX(m_filePath);
|
||||
CHECK(my::RenameFileX(m_filePath + DOWNLOADING_FILE_EXTENSION, m_filePath), ());
|
||||
CHECK(my::RenameFileX(m_filePath + DOWNLOADING_FILE_EXTENSION, m_filePath),
|
||||
(m_filePath, strerror(errno)));
|
||||
|
||||
DisableBackupForFile(m_filePath);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue