From 8e51a340f40fc80331ddac19203ef7a3e7e02d1a Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Mon, 21 May 2018 10:28:16 -0400 Subject: [PATCH] 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) --- apps/speed.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); -- 2.34.1