From: Felix Laurie von Massenbach Date: Tue, 27 May 2014 12:43:36 +0000 (+0100) Subject: Remove unused BIGNUMs. X-Git-Tag: master-post-reformat~758^2~6 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=9a3a99748b75d9656467e28de569bd03bf3edd8f Remove unused BIGNUMs. --- diff --git a/crypto/bn/bn_prime.c b/crypto/bn/bn_prime.c index 117dda955b..093ebee3ad 100644 --- a/crypto/bn/bn_prime.c +++ b/crypto/bn/bn_prime.c @@ -405,12 +405,8 @@ err: int bn_probable_prime_dh_retry(BIGNUM *rnd, int bits, BN_CTX *ctx) { int i; - BIGNUM *t1; int ret = 0; - BN_CTX_start(ctx); - if ((t1 = BN_CTX_get(ctx)) == NULL) goto err; - loop: if (!BN_rand(rnd, bits, 0, 1)) goto err; @@ -427,7 +423,6 @@ loop: ret=1; err: - BN_CTX_end(ctx); bn_check_top(rnd); return(ret); } @@ -435,13 +430,11 @@ err: int bn_probable_prime_dh_coprime(BIGNUM *rnd, int bits, BN_CTX *ctx) { int i; - BIGNUM *t1; BIGNUM *offset_index; BIGNUM *offset_count; int ret = 0; BN_CTX_start(ctx); - if ((t1 = BN_CTX_get(ctx)) == NULL) goto err; if ((offset_index = BN_CTX_get(ctx)) == NULL) goto err; if ((offset_count = BN_CTX_get(ctx)) == NULL) goto err;