code police: narrow source to < 80 columns

This commit is contained in:
Daniel Stenberg 2012-07-06 00:19:41 +02:00
parent b1f64d3a2a
commit 4ac56b9d9f
1 changed files with 2 additions and 1 deletions

View File

@ -419,7 +419,8 @@ CURLcode Curl_ntlm_create_type1_message(const char *userp,
return CURLE_OUT_OF_MEMORY;
}
ntlm->identity.Password = dup_passwd.tbyte_ptr;
ntlm->identity.PasswordLength = curlx_uztoul(_tcslen(dup_passwd.tchar_ptr));
ntlm->identity.PasswordLength =
curlx_uztoul(_tcslen(dup_passwd.tchar_ptr));
dup_passwd.tchar_ptr = NULL;
Curl_unicodefree(passwd.tchar_ptr);