summaryrefslogtreecommitdiffstats
path: root/crypto/bn
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2011-12-02 14:39:41 +0000
committerBen Laurie <ben@openssl.org>2011-12-02 14:39:41 +0000
commit825e1a7c56c5a03efcdba63ac9f0f348037bf02f (patch)
treeaeefe58a1d59119be396ff668d657110539dfba8 /crypto/bn
parent9f2b453338dcbb94bc4ea4f8df27e156712b77c6 (diff)
Fix warnings.
Diffstat (limited to 'crypto/bn')
-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 ffe1b096ba..08ab9fd227 100644
--- a/crypto/bn/bn_gf2m.c
+++ b/crypto/bn/bn_gf2m.c
@@ -522,7 +522,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);