From: Yang Tse Date: Mon, 25 Sep 2006 00:16:23 +0000 (+0000) Subject: Compiler warning fix X-Git-Tag: curl-7_16_0~140 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b2ca777a08c9a23a9d9b90fc8106f3305744fec2;p=thirdparty%2Fcurl.git Compiler warning fix --- diff --git a/lib/multi.c b/lib/multi.c index 0a19c129ee..244994cfec 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -430,9 +430,9 @@ CURLMcode curl_multi_add_handle(CURLM *multi_handle, by default. */ CURLcode res = Curl_ch_connc(easy_handle, multi->connc, multi->connc->num*4); - if(res) + if(res != CURLE_OK) /* TODO: we need to do some cleaning up here! */ - return res; + return CURLM_OUT_OF_MEMORY; } /* increase the alive-counter */