From d640f892bd440bf2917f4a893b517e3db0f0e6a9 Mon Sep 17 00:00:00 2001 From: Arsentiy Milchakov Date: Mon, 23 Sep 2019 15:09:12 +0300 Subject: [PATCH] Removed incorrect CHECK. It is incorrect because of the method OnFinish called from async thread. At this time files could be deleted by DeleteDownloaderFilesForCountry. --- platform/http_request.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/platform/http_request.cpp b/platform/http_request.cpp index 4950e48173..761ec027a5 100644 --- a/platform/http_request.cpp +++ b/platform/http_request.cpp @@ -276,8 +276,7 @@ class FileHttpRequest : public HttpRequest, public IHttpThreadCallback // Rename finished file to it's original name. Platform::RemoveFileIfExists(m_filePath); - CHECK(base::RenameFileX(m_filePath + DOWNLOADING_FILE_EXTENSION, m_filePath), - (m_filePath, strerror(errno))); + base::RenameFileX(m_filePath + DOWNLOADING_FILE_EXTENSION, m_filePath); Platform::DisableBackupForFile(m_filePath); }