提交 0528f253 编写于 作者: M Matt Caswell

Fix a bogus uninit var warning

Reviewed-by: NRichard Levitte <levitte@openssl.org>
上级 f231b4e7
......@@ -290,7 +290,7 @@ int tls13_change_cipher_state(SSL *s, int which)
unsigned char *finsecret = NULL;
EVP_CIPHER_CTX *ciph_ctx;
const EVP_CIPHER *ciph = s->s3->tmp.new_sym_enc;
size_t ivlen, keylen, finsecretlen;
size_t ivlen, keylen, finsecretlen = 0;
const unsigned char *label;
size_t labellen;
int ret = 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册