Unverified Commit d5482339 by Edward Thomson Committed by GitHub

Merge pull request #5354 from josharian/issue-5353

ntlm: prevent (spurious) compiler warnings
parents dbb6429c 93def7ad
......@@ -587,7 +587,9 @@ int ntlm_client_negotiate(
size_t *out_len,
ntlm_client *ntlm)
{
size_t hostname_len, hostname_offset, domain_len, domain_offset;
size_t hostname_len, domain_len;
size_t domain_offset = 0;
size_t hostname_offset = 0;
uint32_t flags = 0;
assert(out && out_len && ntlm);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment