From: Steve Holme Date: Sun, 1 Sep 2013 11:48:50 +0000 (+0100) Subject: easy.c: Fixed compilation warning X-Git-Tag: curl-7_33_0~177 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=af4bddf20b5d99cce55367ec63f793e1ce262e3d;p=thirdparty%2Fcurl.git easy.c: Fixed compilation warning warning: `code' might be used uninitialized in this function --- diff --git a/lib/easy.c b/lib/easy.c index 202d961518..1e718abcba 100644 --- a/lib/easy.c +++ b/lib/easy.c @@ -718,7 +718,7 @@ static CURLcode easy_transfer(CURLM *multi) { bool done = FALSE; CURLMcode mcode = CURLM_OK; - CURLcode code; + CURLcode code = CURLE_OK; struct timeval before; int without_fds = 0; /* count number of consecutive returns from curl_multi_wait() without any filedescriptors */