From: Matt Caswell Date: Thu, 26 May 2016 14:45:14 +0000 (+0100) Subject: The ssl3_digest_cached_records() function does not handle errors properly X-Git-Tag: OpenSSL_1_1_0-pre6~693 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ea32151f7b9353f8906188d007c6893704ac17bb;p=oweals%2Fopenssl.git The ssl3_digest_cached_records() function does not handle errors properly The ssl3_digest_cached_records() function was failing to handle errors that might be returned from EVP_DigestSignInit() and EVP_DigestSignUpdate(). RT#4180 Reviewed-by: Stephen Henson --- diff --git a/ssl/s3_enc.c b/ssl/s3_enc.c index c1222a72c2..cb571c1d07 100644 --- a/ssl/s3_enc.c +++ b/ssl/s3_enc.c @@ -374,14 +374,13 @@ int ssl3_digest_cached_records(SSL *s, int keep) } md = ssl_handshake_md(s); - if (md == NULL) { + if ( md == NULL + || !EVP_DigestInit_ex(s->s3->handshake_dgst, md, NULL) + || !EVP_DigestUpdate(s->s3->handshake_dgst, hdata, hdatalen)) + { SSLerr(SSL_F_SSL3_DIGEST_CACHED_RECORDS, ERR_R_INTERNAL_ERROR); return 0; } - - EVP_DigestInit_ex(s->s3->handshake_dgst, md, NULL); - EVP_DigestUpdate(s->s3->handshake_dgst, hdata, hdatalen); - } if (keep == 0) { BIO_free(s->s3->handshake_buffer);