Fix two uninitialized variables, found while porting to Linux.

This commit is contained in:
nelsonb%netscape.com 2000-08-23 01:20:15 +00:00
Родитель 5008326187
Коммит 3431bd1245
2 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -35,7 +35,7 @@
* the GPL. If you do not delete the provisions above, a recipient
* may use your version of this file under either the MPL or the GPL.
*
* $Id: mpi.c,v 1.19 2000/08/22 01:57:34 nelsonb%netscape.com Exp $
* $Id: mpi.c,v 1.20 2000/08/23 01:20:13 nelsonb%netscape.com Exp $
*/
#include "mpi-priv.h"
@ -868,6 +868,7 @@ mp_err mp_sqr(const mp_int *a, mp_int *sqr)
a = &tmp;
} else {
DIGITS(&tmp) = 0;
res = MP_OKAY;
}
ix = 2 * MP_USED(a);

Просмотреть файл

@ -446,7 +446,8 @@ mp_err mpp_make_prime(mp_int *start, mp_size nBits, mp_size strong,
num_tests = 9;
} else if (nBits >= 256) {
num_tests = 13;
}
} else
num_tests = 50;
if (strong)
--nBits;