[BACK]Return to speed.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / openssl

Diff for /src/usr.bin/openssl/speed.c between version 1.3 and 1.4

version 1.3, 2015/01/02 04:00:21 version 1.4, 2015/01/03 03:03:39
Line 1998 
Line 1998 
         const char *errstr = NULL;          const char *errstr = NULL;
   
         fds = reallocarray(NULL, multi, sizeof *fds);          fds = reallocarray(NULL, multi, sizeof *fds);
           if (fds == NULL) {
                   fprintf(stderr, "reallocarray failure\n");
                   exit(1);
           }
         for (n = 0; n < multi; ++n) {          for (n = 0; n < multi; ++n) {
                 if (pipe(fd) == -1) {                  if (pipe(fd) == -1) {
                         fprintf(stderr, "pipe failure\n");                          fprintf(stderr, "pipe failure\n");

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4