projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ccb2a61
)
GH714: missing field initialisation
author
FdaSilvaYY
<fdasilvayy@gmail.com>
Fri, 19 Feb 2016 22:28:52 +0000
(23:28 +0100)
committer
Rich Salz
<rsalz@openssl.org>
Tue, 23 Feb 2016 18:21:48 +0000
(13:21 -0500)
Signed-off-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Kurt Roeckx <kurt@openssl.org>
(cherry picked from commit
04f2a0b50d219aafcef2fa718d91462b587aa23d
)
crypto/bn/bn_recp.c
patch
|
blob
|
history
diff --git
a/crypto/bn/bn_recp.c
b/crypto/bn/bn_recp.c
index 7497ac624d94e5d411f0e5ec7e980ef5a907d689..f047040efe03bd10b5374c5cd07580e580c3aa6f 100644
(file)
--- 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;
}