Fix warning.

This commit is contained in:
Ben Laurie 2011-12-13 15:55:35 +00:00
parent 9a436c0f89
commit e166891e0d

View File

@ -525,7 +525,7 @@ err:
*/
int BN_GF2m_mod_inv(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx)
{
BIGNUM *b, *c, *u, *v, *tmp;
BIGNUM *b, *c = NULL, *u = NULL, *v = NULL, *tmp;
int ret = 0;
bn_check_top(a);