From: Rich Salz Date: Mon, 21 May 2018 14:28:16 +0000 (-0400) Subject: Check malloc failure via app_malloc X-Git-Tag: OpenSSL_1_1_1-pre7~28 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8e51a340f40fc80331ddac19203ef7a3e7e02d1a;p=openssl Check malloc failure via app_malloc Thanks to GitHUb user murugesandins for reporting this. Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/6322) --- diff --git a/apps/speed.c b/apps/speed.c index c0a34ee994..e5132631cf 100644 --- a/apps/speed.c +++ b/apps/speed.c @@ -3152,7 +3152,7 @@ static int do_multi(int multi, int size_num) int *fds; static char sep[] = ":"; - fds = malloc(sizeof(*fds) * multi); + fds = app_malloc(sizeof(*fds) * multi, "fd buffer for do_multi"); for (n = 0; n < multi; ++n) { if (pipe(fd) == -1) { BIO_printf(bio_err, "pipe failure\n");