1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

Add missing variable initialization

This commit is contained in:
Yang Tse 2009-11-12 14:36:34 +00:00
parent 571309dc3e
commit 011a2818db

View File

@ -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;