[openssl-commits] [openssl] OpenSSL_1_0_1-stable update
Rich Salz
rsalz at openssl.org
Tue Feb 23 18:22:02 UTC 2016
The branch OpenSSL_1_0_1-stable has been updated
via 3ee48ada8ce7a57b6ff185a0388aba1ae1a21684 (commit)
from ccb2a614074ee15c0fbbb9dd49e3cd258d68380a (commit)
- Log -----------------------------------------------------------------
commit 3ee48ada8ce7a57b6ff185a0388aba1ae1a21684
Author: FdaSilvaYY <fdasilvayy at gmail.com>
Date: Fri Feb 19 23:28:52 2016 +0100
GH714: missing field initialisation
Signed-off-by: Rich Salz <rsalz at openssl.org>
Reviewed-by: Kurt Roeckx <kurt at openssl.org>
(cherry picked from commit 04f2a0b50d219aafcef2fa718d91462b587aa23d)
-----------------------------------------------------------------------
Summary of changes:
crypto/bn/bn_recp.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/crypto/bn/bn_recp.c b/crypto/bn/bn_recp.c
index 7497ac6..f047040 100644
--- a/crypto/bn/bn_recp.c
+++ b/crypto/bn/bn_recp.c
@@ -65,6 +65,7 @@ void BN_RECP_CTX_init(BN_RECP_CTX *recp)
BN_init(&(recp->N));
BN_init(&(recp->Nr));
recp->num_bits = 0;
+ recp->shift = 0;
recp->flags = 0;
}
More information about the openssl-commits
mailing list