Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArsentiy Milchakov <milcars@mapswithme.com>2017-11-01 15:35:50 +0300
committerYuri Gorshenin <mipt.vi002@gmail.com>2017-11-01 17:38:12 +0300
commit7a1d96bd904fa7aba315d618b348fa0fc2d63397 (patch)
tree83265d4ded09c5c32b13b6df312097a781b79692
parent89d46e0c75e0123acdb665c3168bb2b5fd748c18 (diff)
[storage] crash fix on diff applying
-rw-r--r--storage/storage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/storage.cpp b/storage/storage.cpp
index d9d0eb0a9b..39eb888580 100644
--- a/storage/storage.cpp
+++ b/storage/storage.cpp
@@ -1455,7 +1455,7 @@ void Storage::OnDiffStatusReceived(diffs::Status const status)
ASSERT_THREAD_CHECKER(m_threadChecker, ());
if (!isSuccess)
{
- OnDownloadFailed(countryId);
+ m_failedCountries.insert(countryId);
return;
}