From: Bernd Edlinger Date: Fri, 16 Mar 2018 20:36:48 +0000 (+0100) Subject: Fix a memory leak in tls1_mac X-Git-Tag: OpenSSL_1_1_0h~27 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ec76f1794a55276c719617b23e816850646c43ff;p=oweals%2Fopenssl.git Fix a memory leak in tls1_mac Reviewed-by: Tim Hudson (Merged from https://github.com/openssl/openssl/pull/5651) --- diff --git a/ssl/record/ssl3_record.c b/ssl/record/ssl3_record.c index f6e59d2f84..6e1ff3f563 100644 --- a/ssl/record/ssl3_record.c +++ b/ssl/record/ssl3_record.c @@ -988,8 +988,10 @@ int tls1_mac(SSL *ssl, SSL3_RECORD *rec, unsigned char *md, int sending) mac_ctx = hash; } else { hmac = EVP_MD_CTX_new(); - if (hmac == NULL || !EVP_MD_CTX_copy(hmac, hash)) + if (hmac == NULL || !EVP_MD_CTX_copy(hmac, hash)) { + EVP_MD_CTX_free(hmac); return -1; + } mac_ctx = hmac; }