summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_mul.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-06-17 11:49:18 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-06-17 11:49:18 +0000
commit15684f58c2e1237ae074f22cba4a61418fd01d3d (patch)
tree916dac08cb56676a96546731a5aeb74c36803131 /crypto/bn/bn_mul.c
parent0e6c24ae4ba80b20aa38bf03381f57d057bbaac9 (diff)
Update from 1.0.0-stable.
Diffstat (limited to 'crypto/bn/bn_mul.c')
-rw-r--r--crypto/bn/bn_mul.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/bn/bn_mul.c b/crypto/bn/bn_mul.c
index b848c8cc60..3a1d459dd6 100644
--- a/crypto/bn/bn_mul.c
+++ b/crypto/bn/bn_mul.c
@@ -1028,6 +1028,8 @@ int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
assert(j <= al || j <= bl);
k = j+j;
t = BN_CTX_get(ctx);
+ if (t == NULL)
+ goto err;
if (al > j || bl > j)
{
bn_wexpand(t,k*4);