mirror of
https://github.com/curl/curl.git
synced 2026-05-30 20:38:23 +03: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue