[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Rich Salz
rsalz at openssl.org
Tue Feb 23 18:21:34 UTC 2016
The branch OpenSSL_1_0_2-stable has been updated
via 04f2a0b50d219aafcef2fa718d91462b587aa23d (commit)
from c436c990f68938fdda1f2bd703bf0cd8dbfa49d2 (commit)
- Log -----------------------------------------------------------------
commit 04f2a0b50d219aafcef2fa718d91462b587aa23d
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>
-----------------------------------------------------------------------
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