From e166891e0dee83375ca1d3d6bc5c45207b556839 Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Tue, 13 Dec 2011 15:55:35 +0000 Subject: Fix warning. --- crypto/bn/bn_gf2m.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crypto/bn/bn_gf2m.c') diff --git a/crypto/bn/bn_gf2m.c b/crypto/bn/bn_gf2m.c index ee7a358..0bfb569 100644 --- a/crypto/bn/bn_gf2m.c +++ b/crypto/bn/bn_gf2m.c @@ -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); -- cgit v1.1