[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Rich Salz
rsalz at openssl.org
Sun Aug 21 16:51:09 UTC 2016
The branch OpenSSL_1_0_2-stable has been updated
via 71da19b050ba67c489b6c5f2543bf239c1947543 (commit)
from 061d6c25ba7cb0524756a872e92da1de2d494d68 (commit)
- Log -----------------------------------------------------------------
commit 71da19b050ba67c489b6c5f2543bf239c1947543
Author: Rich Salz <rsalz at openssl.org>
Date: Sun Aug 21 12:50:05 2016 -0400
Fix incorrect return argument.
Reviewed-by: Dr. Stephen Henson <steve at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
crypto/jpake/jpake.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/crypto/jpake/jpake.c b/crypto/jpake/jpake.c
index 1815735..2ba75f0 100644
--- a/crypto/jpake/jpake.c
+++ b/crypto/jpake/jpake.c
@@ -154,7 +154,7 @@ static void hashbn(SHA_CTX *sha, const BIGNUM *bn)
unsigned char *bin = OPENSSL_malloc(l);
if (bin == NULL)
- return NULL;
+ return;
hashlength(sha, l);
BN_bn2bin(bn, bin);
SHA1_Update(sha, bin, l);
More information about the openssl-commits
mailing list