summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/rsa/rsa_eay.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib/libcrypto/rsa/rsa_eay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/rsa/rsa_eay.c b/src/lib/libcrypto/rsa/rsa_eay.c
index d82dd15493..0eda816081 100644
--- a/src/lib/libcrypto/rsa/rsa_eay.c
+++ b/src/lib/libcrypto/rsa/rsa_eay.c
@@ -479,10 +479,10 @@ static int RSA_eay_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa)
479 int ret=0; 479 int ret=0;
480 BN_CTX *ctx; 480 BN_CTX *ctx;
481 481
482 if ((ctx=BN_CTX_new()) == NULL) goto err;
483 BN_init(&m1); 482 BN_init(&m1);
484 BN_init(&r1); 483 BN_init(&r1);
485 BN_init(&vrfy); 484 BN_init(&vrfy);
485 if ((ctx=BN_CTX_new()) == NULL) goto err;
486 486
487 if (rsa->flags & RSA_FLAG_CACHE_PRIVATE) 487 if (rsa->flags & RSA_FLAG_CACHE_PRIVATE)
488 { 488 {