mirror of
https://github.com/openssl/openssl.git
synced 2024-12-15 06:01:37 +08:00
BN_secure_new function indentation correction
CLA: trivial Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/26095)
This commit is contained in:
parent
c77d9fcf8e
commit
a1f07a0049
@ -252,13 +252,13 @@ BIGNUM *BN_new(void)
|
||||
return ret;
|
||||
}
|
||||
|
||||
BIGNUM *BN_secure_new(void)
|
||||
{
|
||||
BIGNUM *ret = BN_new();
|
||||
if (ret != NULL)
|
||||
ret->flags |= BN_FLG_SECURE;
|
||||
return ret;
|
||||
}
|
||||
BIGNUM *BN_secure_new(void)
|
||||
{
|
||||
BIGNUM *ret = BN_new();
|
||||
if (ret != NULL)
|
||||
ret->flags |= BN_FLG_SECURE;
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* This is used by bn_expand2() */
|
||||
/* The caller MUST check that words > b->dmax before calling this */
|
||||
|
Loading…
Reference in New Issue
Block a user