From: Daniel Stenberg Date: Wed, 5 May 2004 13:00:03 +0000 (+0000) Subject: initiate variables properly to default to no auth for server and proxy X-Git-Tag: curl-7_12_0~192 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=afc1ed60f7aa36dce4335f7ca287677f0026c422;p=curl initiate variables properly to default to no auth for server and proxy --- diff --git a/lib/http.c b/lib/http.c index b86f031d3..5e663cb7d 100644 --- a/lib/http.c +++ b/lib/http.c @@ -207,8 +207,8 @@ static bool pickoneauth(struct auth *pick) CURLcode Curl_http_auth_act(struct connectdata *conn) { struct SessionHandle *data = conn->data; - bool pickhost; - bool pickproxy; + bool pickhost = FALSE; + bool pickproxy = FALSE; CURLcode code = CURLE_OK; if(data->state.authproblem)