[openssl-commits] [openssl] OpenSSL_1_0_1-stable update
Rich Salz
rsalz at openssl.org
Thu Feb 12 16:15:50 UTC 2015
The branch OpenSSL_1_0_1-stable has been updated
via a1331af032ff038a8e2a111c54f7d0722a0f7a49 (commit)
from e48e86232e20cb3352e83c36555f1ab748605ee5 (commit)
- Log -----------------------------------------------------------------
commit a1331af032ff038a8e2a111c54f7d0722a0f7a49
Author: Eric Dequin <Dequin_Eric at emc.com>
Date: Thu Feb 12 10:44:30 2015 -0500
Missing OPENSSL_free on error path.
Reviewed-by: Andy Polyakov <appro at openssl.org>
Reviewed-by: Richard Levitte <levitte at openssl.org>
(cherry picked from commit 1d2932de4cefcc200f175863a42c311916269981)
-----------------------------------------------------------------------
Summary of changes:
ssl/t1_enc.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/ssl/t1_enc.c b/ssl/t1_enc.c
index 99d830d..741dc0b 100644
--- a/ssl/t1_enc.c
+++ b/ssl/t1_enc.c
@@ -631,6 +631,7 @@ int tls1_setup_key_block(SSL *s)
if ((p2 = (unsigned char *)OPENSSL_malloc(num)) == NULL) {
SSLerr(SSL_F_TLS1_SETUP_KEY_BLOCK, ERR_R_MALLOC_FAILURE);
+ OPENSSL_free(p1);
goto err;
}
#ifdef TLS_DEBUG
More information about the openssl-commits
mailing list