提交 a60cc6b4 编写于 作者: D Dr. Stephen Henson

Don't use *from++ in tolower as this is implemented as a macro on some

platforms. Thanks to Shayne Murray <Shayne.Murray@Polycom.com> for
reporting this issue.
上级 2c1f5ce4
......@@ -464,7 +464,8 @@ static int asn1_string_canon(ASN1_STRING *out, ASN1_STRING *in)
}
else
{
*to++ = tolower(*from++);
*to++ = tolower(*from);
from++;
i++;
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册