Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 328383
Collapse All | Expand All

(-)libtommath-0.41-orig/bn_mp_prime_next_prime.c (-1 / +1 lines)
Lines 143-149 Link Here
143
143
144
      /* is this prime? */
144
      /* is this prime? */
145
      for (x = 0; x < t; x++) {
145
      for (x = 0; x < t; x++) {
146
          mp_set(&b, ltm_prime_tab[t]);
146
          mp_set(&b, ltm_prime_tab[x]);
147
          if ((err = mp_prime_miller_rabin(a, &b, &res)) != MP_OKAY) {
147
          if ((err = mp_prime_miller_rabin(a, &b, &res)) != MP_OKAY) {
148
             goto LBL_ERR;
148
             goto LBL_ERR;
149
          }
149
          }

Return to bug 328383