From 78bbd0eecff23203dd8a1aa2dd76143af9a90b7b Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Tue, 26 Jul 2011 19:42:16 +0200 Subject: fix compiler warning --- lib/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/http.c') diff --git a/lib/http.c b/lib/http.c index bb4b38793..6646d5ed3 100644 --- a/lib/http.c +++ b/lib/http.c @@ -1631,7 +1631,7 @@ CURLcode Curl_http(struct connectdata *conn, bool *done) curl_off_t included_body = 0; const char *httpstring; Curl_send_buffer *req_buffer; - curl_off_t postsize; /* off_t type to be able to hold a large file size */ + curl_off_t postsize = 0; /* off_t type to be able to hold a large file size */ int seekerr = CURL_SEEKFUNC_OK; /* Always consider the DO phase done after this function call, even if there -- cgit v1.2.3