From: Andy Polyakov Date: Sat, 9 Feb 2013 18:50:34 +0000 (+0100) Subject: ssl/s3_[clnt|srvr].c: fix warnings. X-Git-Tag: OpenSSL_1_0_1e~6 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4d8da30fc1e83ce85a3f7ceec6624121d40efb89;p=oweals%2Fopenssl.git ssl/s3_[clnt|srvr].c: fix warnings. --- 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.