[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Tue Sep 20 20:00:00 UTC 2016
The branch master has been updated
via 5a008ff6c559739a59188e11f32da99028302647 (commit)
from 13a461831ab85ec9f55806ebf2df5ffb7f3f357a (commit)
- Log -----------------------------------------------------------------
commit 5a008ff6c559739a59188e11f32da99028302647
Author: Richard Levitte <levitte at openssl.org>
Date: Tue Sep 20 21:48:24 2016 +0200
Quiet compiler warning about uninitialised variable
Reviewed-by: Rich Salz <rsalz at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
ssl/statem/statem_clnt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ssl/statem/statem_clnt.c b/ssl/statem/statem_clnt.c
index bb7219f..1774f7a 100644
--- a/ssl/statem/statem_clnt.c
+++ b/ssl/statem/statem_clnt.c
@@ -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;
More information about the openssl-commits
mailing list