提交 8d85b33e 编写于 作者: B Bodo Möller

by request: let BN_dup(NULL) just return NULL

上级 0dd25e36
......@@ -489,6 +489,8 @@ BIGNUM *BN_dup(const BIGNUM *a)
{
BIGNUM *r;
if (a == NULL) return NULL;
bn_check_top(a);
r=BN_new();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册