We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 682d007 commit 547d349Copy full SHA for 547d349
src/util/http_downloader_curl.cpp
@@ -193,7 +193,8 @@ void HTTPDownloaderCurl::WorkerThreadEntryPoint()
193
ProcessQueuedActions();
194
195
// Perform curl operations
196
- err = curl_multi_perform(m_multi_handle, nullptr);
+ int running_handles;
197
+ err = curl_multi_perform(m_multi_handle, &running_handles);
198
if (err != CURLM_OK)
199
ERROR_LOG("curl_multi_perform() returned {}", static_cast<int>(err));
200
0 commit comments