1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-11-22 09:29:52 +03:00

Merge PR #759: Protocol.c: fix crash with OpenVPN when the certificate's common name is empty

This commit is contained in:
Davide Beatrici 2018-10-18 22:24:37 +02:00 committed by GitHub
commit 99a029c7c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7094,8 +7094,7 @@ PACK *PackLoginWithOpenVPNCertificate(char *hubname, char *username, X *x)
{
return NULL;
}
wcstombs(cn_username, x->subject_name->CommonName, 127);
cn_username[127] = '\0';
UniToStr(cn_username, sizeof(cn_username), x->subject_name->CommonName);
PackAddStr(p, "username", cn_username);
}
else