mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
Quiet compiler warning about uninitialised variable
Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
13a461831a
commit
5a008ff6c5
@ -2618,7 +2618,7 @@ int tls_construct_client_verify(SSL *s)
|
||||
{
|
||||
EVP_PKEY *pkey;
|
||||
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;
|
||||
long hdatalen = 0;
|
||||
void *hdata;
|
||||
|
Loading…
Reference in New Issue
Block a user