From: Yang Tse Date: Thu, 12 Nov 2009 14:36:34 +0000 (+0000) Subject: Add missing variable initialization X-Git-Tag: curl-7_20_0~378 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=011a2818dbaa4bd72929a77d9bce5182dbc43f55;p=thirdparty%2Fcurl.git Add missing variable initialization --- diff --git a/lib/transfer.c b/lib/transfer.c index 86213f90dc..613cc51170 100644 --- a/lib/transfer.c +++ b/lib/transfer.c @@ -1994,6 +1994,8 @@ CURLcode Curl_pretransfer(struct SessionHandle *data) data->state.errorbuf = FALSE; /* no error has occurred */ data->state.httpversion = 0; /* don't assume any particular server version */ + data->state.ssl_connect_retry = FALSE; + data->state.authproblem = FALSE; data->state.authhost.want = data->set.httpauth; data->state.authproxy.want = data->set.proxyauth;