Skip to content

Commit

Permalink
Initialise alg_k and alg_a
Browse files Browse the repository at this point in the history
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from #2543)
  • Loading branch information
levitte committed Feb 2, 2017
1 parent 0e2c7b3 commit 02cba62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ssl/s3_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */

Expand Down

0 comments on commit 02cba62

Please sign in to comment.