8040812: Uninitialised memory in jdk/src/share/native/sun/security/ec/impl/mpi.c

Reviewed-by: mullan
This commit is contained in:
Vinnie Ryan 2014-06-10 15:49:53 +01:00
parent b2e8017412
commit 15f88447cb

View File

@ -3376,7 +3376,7 @@ mp_err s_mp_div_d(mp_int *mp, mp_digit d, mp_digit *r)
#if !defined(MP_NO_MP_WORD) && !defined(MP_NO_DIV_WORD)
mp_word w = 0, q;
#else
mp_digit w, q;
mp_digit w = 0, q;
#endif
int ix;
mp_err res;