From c32a858917048fb254ad2bcf37a7ab94389ad9af Mon Sep 17 00:00:00 2001 From: Todd A Ouska Date: Tue, 7 Jun 2011 09:03:16 -0700 Subject: [PATCH] fix incorrect tfm warning on init --- ctaocrypt/src/tfm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctaocrypt/src/tfm.c b/ctaocrypt/src/tfm.c index 55eb631ac..09fb27721 100644 --- a/ctaocrypt/src/tfm.c +++ b/ctaocrypt/src/tfm.c @@ -2185,7 +2185,7 @@ static const fp_digit primes[256] = { int fp_isprime(fp_int *a) { fp_int b; - fp_digit d; + fp_digit d = 0; int r, res; /* do trial division */