mirror of
https://github.com/moparisthebest/curl
synced 2024-11-04 08:35:05 -05:00
vauth/cleartext: Don't send the authzid if it is empty
Follow up to 762a292f
.
This commit is contained in:
parent
c8bbfb90ea
commit
f0950acc07
@ -73,7 +73,7 @@ CURLcode Curl_auth_create_plain_message(struct Curl_easy *data,
|
||||
|
||||
*outlen = 0;
|
||||
*outptr = NULL;
|
||||
zlen = strlen(authzid);
|
||||
zlen = (authzid == NULL ? 0 : strlen(authzid));
|
||||
clen = strlen(authcid);
|
||||
plen = strlen(passwd);
|
||||
|
||||
@ -87,6 +87,7 @@ CURLcode Curl_auth_create_plain_message(struct Curl_easy *data,
|
||||
return CURLE_OUT_OF_MEMORY;
|
||||
|
||||
/* Calculate the reply */
|
||||
if(zlen != 0)
|
||||
memcpy(plainauth, authzid, zlen);
|
||||
plainauth[zlen] = '\0';
|
||||
memcpy(plainauth + zlen + 1, authcid, clen);
|
||||
|
Loading…
Reference in New Issue
Block a user