You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
303 B

--- crypto/bn/bn_prime.pl.orig Wed Feb 16 14:24:06 2000
+++ crypto/bn/bn_prime.pl Wed Aug 6 10:49:34 2003
@@ -11,7 +11,7 @@
$p+=2;
$s=int(sqrt($p));
- for ($i=0; $primes[$i]<=$s; $i++)
+ for ($i=0; defined($primes[$i]) && $primes[$i]<=$s; $i++)
{
next loop if (($p%$primes[$i]) == 0);
}