forked from organicmaps/organicmaps
[mac] Fixed crash in My Position http request
This commit is contained in:
parent
71ec412788
commit
a6bc3ad0a1
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ static bool NeedToGenerateUrl(string const & url)
|
|||
|
||||
m_projectedFileSize = [response expectedContentLength];
|
||||
// if server doesn't support resume, make sure we're downloading file from scratch
|
||||
if (m_projectedFileSize < 0)
|
||||
if (!m_params.m_fileToSave.empty() && m_projectedFileSize < 0)
|
||||
{
|
||||
fclose(m_file);
|
||||
m_file = fopen((m_params.m_fileToSave + DOWNLOADING_FILE_EXTENSION).c_str(), "wb");
|
||||
|
|
Loading…
Add table
Reference in a new issue