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 f469264 commit 954be4bCopy full SHA for 954be4b
cpr/multiperform.cpp
@@ -79,13 +79,6 @@ void MultiPerform::RemoveSession(const std::shared_ptr<Session>& session) {
79
throw std::invalid_argument("Failed to find session!");
80
}
81
82
- // Remove easy handle from multihandle
83
- const CURLMcode error_code = curl_multi_remove_handle(multicurl_->handle, session->curl_->handle);
84
- if (error_code != CURLM_OK) {
85
- std::cerr << "curl_multi_remove_handle() failed, code " << static_cast<int>(error_code) << '\n';
86
- return;
87
- }
88
-
89
// Unlock session
90
session->isUsedInMultiPerform = false;
91
0 commit comments