1
0
mirror of https://github.com/moparisthebest/curl synced 2024-11-11 12:05:06 -05: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.errorbuf = FALSE; /* no error has occurred */
data->state.httpversion = 0; /* don't assume any particular server version */ data->state.httpversion = 0; /* don't assume any particular server version */
data->state.ssl_connect_retry = FALSE;
data->state.authproblem = FALSE; data->state.authproblem = FALSE;
data->state.authhost.want = data->set.httpauth; data->state.authhost.want = data->set.httpauth;
data->state.authproxy.want = data->set.proxyauth; data->state.authproxy.want = data->set.proxyauth;