Skip to content

Commit

Permalink
libfreerdp-core: fix issue #436
Browse files Browse the repository at this point in the history
  • Loading branch information
awakecoding committed Feb 15, 2012
1 parent 5d7e55f commit aa7b83f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libfreerdp-core/crypto.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)++;
}
}
Expand Down

0 comments on commit aa7b83f

Please sign in to comment.