Merge branch 'ktdreyer/initialize-variable' into develop

This commit is contained in:
Steffen Jaeckel 2014-01-25 16:27:42 +01:00
commit b83a5d4528

View File

@ -22,7 +22,7 @@
*/ */
int mp_prime_next_prime(mp_int *a, int t, int bbs_style) int mp_prime_next_prime(mp_int *a, int t, int bbs_style)
{ {
int err, res, x, y; int err, res = MP_NO, x, y;
mp_digit res_tab[PRIME_SIZE], step, kstep; mp_digit res_tab[PRIME_SIZE], step, kstep;
mp_int b; mp_int b;