remove accidentally committed debugging cruft.

This commit is contained in:
Geoff Thorpe 2003-10-29 05:35:31 +00:00
parent 8a66d17899
commit db59141467

View File

@ -81,7 +81,6 @@ BIGNUM *BN_generate_prime(BIGNUM *ret, int bits, int safe,
}
else
rnd=ret;
bn_verify(rnd);
if(!BN_generate_prime_ex(rnd, bits, safe, add, rem, &cb))
goto err;
@ -89,7 +88,6 @@ BIGNUM *BN_generate_prime(BIGNUM *ret, int bits, int safe,
found = 1;
err:
if (!found && (ret == NULL) && (rnd != NULL)) BN_free(rnd);
if(found) bn_verify(rnd);
return(found ? rnd : NULL);
}