forked from organicmaps/organicmaps-tmp
[iOS][android] Fixed possible infinite recursion in downloader.
Signed-off-by: vng <viktor.govako@gmail.com>
This commit is contained in:
parent
bfe401a602
commit
bc3ef16d5d
2 changed files with 10 additions and 4 deletions
|
@ -97,9 +97,11 @@ void BackgroundDownloaderAdapter::Download(QueuedCountry && queuedCountry)
|
|||
auto urls = MakeUrlList(queuedCountry.GetRelativeUrl());
|
||||
auto const path = queuedCountry.GetFileDownloadPath();
|
||||
|
||||
queuedCountry.OnStartDownloading();
|
||||
// For safety reasons, add to the queue first and notify start downloading then,
|
||||
// to avoid possible recursion.
|
||||
m_queue.Append(QueuedCountry(queuedCountry));
|
||||
|
||||
m_queue.Append(std::move(queuedCountry));
|
||||
queuedCountry.OnStartDownloading();
|
||||
|
||||
DownloadFromLastUrl(countryId, path, std::move(urls));
|
||||
}
|
||||
|
|
|
@ -71,9 +71,13 @@ void BackgroundDownloaderAdapter::Download(QueuedCountry && queuedCountry)
|
|||
auto urls = MakeUrlList(queuedCountry.GetRelativeUrl());
|
||||
auto const path = queuedCountry.GetFileDownloadPath();
|
||||
|
||||
queuedCountry.OnStartDownloading();
|
||||
// The order is important here: add to the queue first, notify start downloading then.
|
||||
// Infinite recursion possible here, otherwise:
|
||||
// OnStartDownloading -> NotifyStatusChanged -> processCountryEvent -> configDialog (?!)
|
||||
// -> downloadNode for the same country if autodownload enabled -> Download.
|
||||
m_queue.Append(QueuedCountry(queuedCountry));
|
||||
|
||||
m_queue.Append(std::move(queuedCountry));
|
||||
queuedCountry.OnStartDownloading();
|
||||
|
||||
DownloadFromLastUrl(countryId, path, std::move(urls));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue