Skip to content

Commit

Permalink
GH714: missing field initialisation
Browse files Browse the repository at this point in the history
Signed-off-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Kurt Roeckx <kurt@openssl.org>
(cherry picked from commit 04f2a0b)
  • Loading branch information
FdaSilvaYY authored and Rich Salz committed Feb 23, 2016
1 parent ccb2a61 commit 3ee48ad
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions crypto/bn/bn_recp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 3ee48ad

Please sign in to comment.