Skip to content
Snippets Groups Projects
Commit 4f17c583 authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Fixed an invalid returned error code added in my last submission.

parent f6251734
No related branches found
No related tags found
No related merge requests found
......@@ -523,7 +523,7 @@ CURLMcode curl_multi_add_handle(CURLM *multi_handle,
if(res != CURLE_OK) {
/* FIXME: may need to do more cleanup here */
curl_multi_remove_handle(multi_handle, easy_handle);
return res;
return CURLM_OUT_OF_MEMORY;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment