From: Dr. Stephen Henson Date: Thu, 17 Mar 2011 14:43:13 +0000 (+0000) Subject: Fix warnings about ignored return values. X-Git-Tag: OpenSSL-fips-2_0-rc1~661 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=27131fe8f7418bf22b1e3000ea6a5d7b1ec8ebd4;p=oweals%2Fopenssl.git Fix warnings about ignored return values. --- diff --git a/apps/speed.c b/apps/speed.c index 2d34310e61..d4b0fddf7b 100644 --- a/apps/speed.c +++ b/apps/speed.c @@ -2644,7 +2644,11 @@ static int do_multi(int multi) fds=malloc(multi*sizeof *fds); for(n=0 ; n < multi ; ++n) { - pipe(fd); + if (pipe(fd) == -1) + { + fprintf(stderr, "pipe failure\n"); + exit(1); + } fflush(stdout); fflush(stderr); if(fork()) @@ -2656,7 +2660,11 @@ static int do_multi(int multi) { close(fd[0]); close(1); - dup(fd[1]); + if (dup(fd[1]) == -1) + { + fprintf(stderr, "dup failed\n"); + exit(1); + } close(fd[1]); mr=1; usertime=0;