Curl_proxyCONNECT: clear 'rewindaftersend' on success

After having done a POST over a CONNECT request, the 'rewindaftersend'
boolean could be holding the previous value which could lead to badness.

This should be tested for in a new test case!

Bug: https://groups.google.com/d/msg/msysgit/B31LNftR4BI/KhRTz0iuGmUJ
This commit is contained in:
Oliver Schindler 2013-03-18 22:40:35 +01:00 committed by Daniel Stenberg
parent 90110a9be0
commit d1d0ee075f
1 changed files with 2 additions and 0 deletions

View File

@ -560,6 +560,8 @@ CURLcode Curl_proxyCONNECT(struct connectdata *conn,
infof (data, "Proxy replied OK to CONNECT request\n");
data->req.ignorebody = FALSE; /* put it (back) to non-ignore state */
conn->bits.rewindaftersend = FALSE; /* make sure this isn't set for the
document request */
return CURLE_OK;
}
#endif /* CURL_DISABLE_PROXY */