summaryrefslogtreecommitdiffstats
path: root/ssl/tls13_enc.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2017-03-03 00:03:47 +0000
committerMatt Caswell <matt@openssl.org>2017-03-03 00:05:57 +0000
commit42f50fdf8aaff297742f0b541408a89e33e31c6e (patch)
tree3b4a2d1f98acc6ccff2ce9466176a6511aa3bc69 /ssl/tls13_enc.c
parent30d1bab146ffef92376f09b7372aac7a75281627 (diff)
Silence some more clang warnings
Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2832)
Diffstat (limited to 'ssl/tls13_enc.c')
-rw-r--r--ssl/tls13_enc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssl/tls13_enc.c b/ssl/tls13_enc.c
index 47d23bd365..9fdd61e8c7 100644
--- a/ssl/tls13_enc.c
+++ b/ssl/tls13_enc.c
@@ -343,8 +343,8 @@ int tls13_change_cipher_state(SSL *s, int which)
const unsigned char *label;
size_t labellen, hashlen = 0;
int ret = 0;
- const EVP_MD *md;
- const EVP_CIPHER *cipher;
+ const EVP_MD *md = NULL;
+ const EVP_CIPHER *cipher = NULL;
if (which & SSL3_CC_READ) {
if (s->enc_read_ctx != NULL) {