From 4d8da30fc1e83ce85a3f7ceec6624121d40efb89 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Sat, 9 Feb 2013 19:50:34 +0100 Subject: [PATCH] ssl/s3_[clnt|srvr].c: fix warnings. --- ssl/s3_clnt.c | 3 +++ ssl/s3_srvr.c | 3 +++ 2 files changed, 6 insertions(+) diff --git a/ssl/s3_clnt.c b/ssl/s3_clnt.c index 7b4bc6304d..344e2eb1af 100644 --- a/ssl/s3_clnt.c +++ b/ssl/s3_clnt.c @@ -986,7 +986,10 @@ int ssl3_get_server_hello(SSL *s) * client authentication. */ if (TLS1_get_version(s) < TLS1_2_VERSION && !ssl3_digest_cached_records(s)) + { + al = SSL_AD_INTERNAL_ERROR; goto f_err; + } /* lets get the compression algorithm */ /* COMPRESSION */ #ifdef OPENSSL_NO_COMP diff --git a/ssl/s3_srvr.c b/ssl/s3_srvr.c index 5e1007077f..bfb8480540 100644 --- a/ssl/s3_srvr.c +++ b/ssl/s3_srvr.c @@ -1391,7 +1391,10 @@ int ssl3_get_client_hello(SSL *s) if (TLS1_get_version(s) < TLS1_2_VERSION || !(s->verify_mode & SSL_VERIFY_PEER)) { if (!ssl3_digest_cached_records(s)) + { + al = SSL_AD_INTERNAL_ERROR; goto f_err; + } } /* we now have the following setup. -- 2.25.1