Browse Source

- Attempt to fix downloadFromUrl on Windows

adaptive-webui-19844
Christophe Dumez 17 years ago
parent
commit
56b018fb95
  1. 3
      src/downloadThread.cpp

3
src/downloadThread.cpp

@ -109,7 +109,8 @@ void subDownloadThread::run(){
curl_easy_setopt(curl, CURLOPT_PROXYUSERPWD, (username+QString(":")+password).toUtf8().data()); curl_easy_setopt(curl, CURLOPT_PROXYUSERPWD, (username+QString(":")+password).toUtf8().data());
} }
} }
// TODO: define CURLOPT_WRITEFUNCTION or it will crash on windows // We have to define CURLOPT_WRITEFUNCTION or it will crash on windows
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, fwrite);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, f); curl_easy_setopt(curl, CURLOPT_WRITEDATA, f);
qDebug("Downloading %s", url.toUtf8().data()); qDebug("Downloading %s", url.toUtf8().data());
res = curl_easy_perform(curl); res = curl_easy_perform(curl);

Loading…
Cancel
Save