diff options
Diffstat (limited to 'src/net/download.cpp')
-rw-r--r-- | src/net/download.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/download.cpp b/src/net/download.cpp index 5d35e1ace..9c9a777fa 100644 --- a/src/net/download.cpp +++ b/src/net/download.cpp @@ -206,7 +206,6 @@ int Download::downloadThread(void *ptr) while (attempts < 3 && !complete && !d->mOptions.cancel) { - FILE *file = nullptr; d->mUpdateFunction(d->mPtr, DOWNLOAD_STATUS_STARTING, 0, 0); @@ -221,6 +220,7 @@ int Download::downloadThread(void *ptr) if (d->mCurl && !d->mOptions.cancel) { + FILE *file = nullptr; logger->log("Downloading: %s", d->mUrl.c_str()); curl_easy_setopt(d->mCurl, CURLOPT_FOLLOWLOCATION, 1); |