Update length if copying MSB set in asn1_string_canon().

This commit is contained in:
Dr. Stephen Henson 2006-09-22 13:37:15 +00:00
parent 6ec6cfc767
commit eebeb52b29

View File

@ -428,7 +428,10 @@ static int asn1_string_canon(ASN1_STRING *out, ASN1_STRING *in)
{
/* If MSB set just copy across */
if (*from & 0x80)
{
*to++ = *from++;
i++;
}
/* Collapse multiple spaces */
else if (isspace(*from))
{