From: Daniel Stenberg Date: Tue, 5 Jul 2005 22:07:34 +0000 (+0000) Subject: correction for the 407 with response-body case X-Git-Tag: upstream/7.37.1~11049 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c3a826fdcef1e64d9fe66877eb36c1649c4b886b;p=platform%2Fupstream%2Fcurl.git correction for the 407 with response-body case --- diff --git a/lib/http.c b/lib/http.c index 9d9bb3e..f46c158 100644 --- a/lib/http.c +++ b/lib/http.c @@ -1218,9 +1218,14 @@ CURLcode Curl_proxyCONNECT(struct connectdata *conn, nread += gotbytes; if(keepon > TRUE) { + /* This means we are currently ignoring a response-body, so we + simply count down our counter and make sure to break out of the + loop when we're done! */ cl -= gotbytes; - if(!cl) + if(cl<=0) { + keepon = FALSE; break; + } } else for(i = 0; i < gotbytes; ptr++, i++) {