From: Steve Holme Date: Tue, 12 Nov 2013 09:59:22 +0000 (+0000) Subject: multi: Small code tidy up to avoid hard return X-Git-Tag: curl-7_34_0~110 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=65ce9b6d6cfd332325c7ffb291598178eff53797;p=thirdparty%2Fcurl.git multi: Small code tidy up to avoid hard return --- diff --git a/lib/multi.c b/lib/multi.c index 2cb46ceeca..923e2ced88 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -639,7 +639,7 @@ static int waitconnect_getsock(struct connectdata *conn, socket to become readable to be able to get the response headers */ if(conn->tunnel_state[FIRSTSOCKET] == TUNNEL_CONNECT) { sock[0] = conn->sock[FIRSTSOCKET]; - return GETSOCK_READSOCK(0); + rc = GETSOCK_READSOCK(0); } return rc;