mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 15:48:49 -05:00
digest_sspi: fix compilation warning
MSVC complains: warning C4701: potentially uninitialized local variable 'output_token_len' used
This commit is contained in:
parent
a21cae5f97
commit
727917555d
@ -412,7 +412,7 @@ CURLcode Curl_auth_create_digest_http_message(struct Curl_easy *data,
|
||||
size_t token_max;
|
||||
char *resp;
|
||||
BYTE *output_token;
|
||||
size_t output_token_len;
|
||||
size_t output_token_len = 0;
|
||||
PSecPkgInfo SecurityPackage;
|
||||
SecBuffer chlg_buf[5];
|
||||
SecBufferDesc chlg_desc;
|
||||
|
Loading…
Reference in New Issue
Block a user