1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-22 16:18:48 -05:00

Compiler warning fix

This commit is contained in:
Yang Tse 2006-09-25 00:16:23 +00:00
parent ba01198e6c
commit b2ca777a08

View File

@ -430,9 +430,9 @@ CURLMcode curl_multi_add_handle(CURLM *multi_handle,
by default. */ by default. */
CURLcode res = Curl_ch_connc(easy_handle, multi->connc, CURLcode res = Curl_ch_connc(easy_handle, multi->connc,
multi->connc->num*4); multi->connc->num*4);
if(res) if(res != CURLE_OK)
/* TODO: we need to do some cleaning up here! */ /* TODO: we need to do some cleaning up here! */
return res; return CURLM_OUT_OF_MEMORY;
} }
/* increase the alive-counter */ /* increase the alive-counter */