From: Ben Laurie Date: Tue, 13 Dec 2011 15:55:35 +0000 (+0000) Subject: Fix warning. X-Git-Tag: master-post-reformat~2043 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=e166891e0dee83375ca1d3d6bc5c45207b556839 Fix warning. --- diff --git a/crypto/bn/bn_gf2m.c b/crypto/bn/bn_gf2m.c index ee7a358c69..0bfb56971e 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);