Silence some more clang warnings

Reviewed-by: Tim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2832)
This commit is contained in:
Matt Caswell 2017-03-03 00:03:47 +00:00
parent 30d1bab146
commit 42f50fdf8a

View file

@ -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) {