From 276a9c871ec88d79789e8ee5d72ceae6d97a6414 Mon Sep 17 00:00:00 2001 From: toddouska Date: Fri, 6 Dec 2013 08:58:06 -0800 Subject: [PATCH] eccfp warning fix --- ctaocrypt/src/ecc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctaocrypt/src/ecc.c b/ctaocrypt/src/ecc.c index 0310f8a76..609a386f8 100644 --- a/ctaocrypt/src/ecc.c +++ b/ctaocrypt/src/ecc.c @@ -3267,7 +3267,7 @@ int ecc_mul2add(ecc_point* A, mp_int* kA, ecc_point* B, mp_int* kB, ecc_point* C, mp_int* modulus) { - int idx1, idx2, err = MP_OKAY, mpInit = 0; + int idx1 = -1, idx2 = -1, err = MP_OKAY, mpInit = 0; mp_digit mp; mp_int mu;