From: Daniel Stenberg Date: Fri, 10 Dec 2004 14:45:35 +0000 (+0000) Subject: don't try the rewind if no http struct is allocated yet X-Git-Tag: curl-7_12_3~88 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c0c885a1f37c5cbced25cb9616c4f868151fd740;p=thirdparty%2Fcurl.git don't try the rewind if no http struct is allocated yet --- diff --git a/lib/http.c b/lib/http.c index 8303c53010..d984eddc1d 100644 --- a/lib/http.c +++ b/lib/http.c @@ -219,9 +219,16 @@ static CURLcode perhapsrewind(struct connectdata *conn) { struct HTTP *http = conn->proto.http; struct SessionHandle *data = conn->data; - curl_off_t bytessent = http->writebytecount; + curl_off_t bytessent; curl_off_t expectsend = -1; /* default is unknown */ + if(!http) + /* If this is still NULL, we have not reach very far and we can + safely skip this rewinding stuff */ + return CURLE_OK; + + bytessent = http->writebytecount; + /* figure out how much data we are expected to send */ switch(data->set.httpreq) { case HTTPREQ_POST: