remove useless initialization

This commit is contained in:
Francois Perrad 2018-12-26 08:06:23 +01:00
parent f9eec4350e
commit 8dceba2e68
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ int mp_prime_frobenius_underwood(const mp_int *N, int *result)
mp_int T1z,T2z,Np1z,sz,tz;
int a, ap2, length, i, j, isset;
int e = MP_OKAY;
int e;
*result = MP_NO;

View File

@ -85,7 +85,7 @@ int mp_prime_strong_lucas_selfridge(const mp_int *a, int *result)
mp_int Dz, gcd, Np1, Uz, Vz, U2mz, V2mz, Qmz, Q2mz, Qkdz, T1z, T2z, T3z, T4z, Q2kdz;
/* CZ TODO: Some of them need the full 32 bit, hence the (temporary) exclusion of MP_8BIT */
int32_t D, Ds, J, sign, P, Q, r, s, u, Nbits;
int e = MP_OKAY;
int e;
int isset;
*result = MP_NO;