提交 5a008ff6 编写于 作者: R Richard Levitte

Quiet compiler warning about uninitialised variable

Reviewed-by: NRich Salz <rsalz@openssl.org>
上级 13a46183
...@@ -2618,7 +2618,7 @@ int tls_construct_client_verify(SSL *s) ...@@ -2618,7 +2618,7 @@ int tls_construct_client_verify(SSL *s)
{ {
EVP_PKEY *pkey; EVP_PKEY *pkey;
const EVP_MD *md = s->s3->tmp.md[s->cert->key - s->cert->pkeys]; const EVP_MD *md = s->s3->tmp.md[s->cert->key - s->cert->pkeys];
EVP_MD_CTX *mctx; EVP_MD_CTX *mctx = NULL;
unsigned u = 0; unsigned u = 0;
long hdatalen = 0; long hdatalen = 0;
void *hdata; void *hdata;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册