libfreerdp-core: fix issue #436

This commit is contained in:
Marc-André Moreau 2012-02-15 16:33:51 -05:00
parent 5d7e55fe9d
commit aa7b83ff1e
1 changed files with 1 additions and 1 deletions

View File

@ -443,7 +443,7 @@ char** crypto_cert_subject_alt_name(X509* xcert, int* count, int** lengths)
{
length = ASN1_STRING_to_UTF8(&string, subject_alt_name->d.dNSName);
strings[*count] = (char*) string;
*lengths[*count] = length;
(*lengths)[*count] = length;
(*count)++;
}
}