From c3a826fdcef1e64d9fe66877eb36c1649c4b886b Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 5 Jul 2005 22:07:34 +0000 Subject: [PATCH] correction for the 407 with response-body case --- lib/http.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/http.c b/lib/http.c index 9d9bb3e42..f46c1585a 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++) {