aboutsummaryrefslogtreecommitdiff
path: root/crypto/bn/bn_gf2m.c
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2011-12-13 15:55:35 +0000
committerBen Laurie <ben@openssl.org>2011-12-13 15:55:35 +0000
commite166891e0dee83375ca1d3d6bc5c45207b556839 (patch)
tree78851ea621613166075b5efded564a3cab737d0d /crypto/bn/bn_gf2m.c
parent9a436c0f89841251e880d3729494f035d10f8837 (diff)
downloadopenssl-e166891e0dee83375ca1d3d6bc5c45207b556839.zip
openssl-e166891e0dee83375ca1d3d6bc5c45207b556839.tar.gz
openssl-e166891e0dee83375ca1d3d6bc5c45207b556839.tar.bz2
Fix warning.
Diffstat (limited to 'crypto/bn/bn_gf2m.c')
-rw-r--r--crypto/bn/bn_gf2m.c2
1 files changed, 1 insertions, 1 deletions
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);