[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Thu Feb 2 23:43:46 UTC 2017
The branch master has been updated
via 02cba628daa7fea959c561531a8a984756bdf41c (commit)
from 0e2c7b3ee374bb78785095589a4b0c33bca4b9c3 (commit)
- Log -----------------------------------------------------------------
commit 02cba628daa7fea959c561531a8a984756bdf41c
Author: Richard Levitte <levitte at openssl.org>
Date: Thu Feb 2 23:45:38 2017 +0100
Initialise alg_k and alg_a
Reviewed-by: Rich Salz <rsalz at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2543)
-----------------------------------------------------------------------
Summary of changes:
ssl/s3_lib.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c
index de771a2..0d84210 100644
--- a/ssl/s3_lib.c
+++ b/ssl/s3_lib.c
@@ -3581,7 +3581,7 @@ const SSL_CIPHER *ssl3_choose_cipher(SSL *s, STACK_OF(SSL_CIPHER) *clnt,
const SSL_CIPHER *c, *ret = NULL;
STACK_OF(SSL_CIPHER) *prio, *allow;
int i, ii, ok;
- unsigned long alg_k, alg_a, mask_k, mask_a;
+ unsigned long alg_k = 0, alg_a = 0, mask_k, mask_a;
/* Let's see which ciphers we can support */
More information about the openssl-commits
mailing list