From: Matt Caswell Date: Tue, 15 Mar 2016 11:51:48 +0000 (+0000) Subject: Add a check for a failed malloc X-Git-Tag: OpenSSL_1_0_1t~25 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4275ee389b4092363ed8f2f2fa8aa0240b0ea122;p=oweals%2Fopenssl.git Add a check for a failed malloc Ensure we check for a NULL return from OPENSSL_malloc Issue reported by Guido Vranken. Reviewed-by: Richard Levitte --- diff --git a/ssl/d1_both.c b/ssl/d1_both.c index aaa18677ce..19c3da6161 100644 --- a/ssl/d1_both.c +++ b/ssl/d1_both.c @@ -1579,6 +1579,8 @@ int dtls1_process_heartbeat(SSL *s) * plus 2 bytes payload length, plus payload, plus padding */ buffer = OPENSSL_malloc(write_length); + if (buffer == NULL) + return -1; bp = buffer; /* Enter response type, length and copy payload */ diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c index 090f93ef62..0bdb77d49f 100644 --- a/ssl/t1_lib.c +++ b/ssl/t1_lib.c @@ -2581,6 +2581,8 @@ int tls1_process_heartbeat(SSL *s) * plus 2 bytes payload length, plus payload, plus padding */ buffer = OPENSSL_malloc(1 + 2 + payload + padding); + if (buffer == NULL) + return -1; bp = buffer; /* Enter response type, length and copy payload */