]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
apps: fix coverity 966560: division by zero
authorPauli <ppzgs1@gmail.com>
Wed, 17 Mar 2021 02:23:52 +0000 (12:23 +1000)
committerPauli <ppzgs1@gmail.com>
Thu, 18 Mar 2021 11:24:25 +0000 (21:24 +1000)
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14586)

apps/s_time.c

index 2052a15c4fea7fe3c56209021a6ffd2be8f7ebd1..386a81a78efe7123b0803d06031144bdf17c7e15 100644 (file)
@@ -320,7 +320,8 @@ int s_time_main(int argc, char **argv)
          nConn, totalTime, ((double)nConn / totalTime), bytes_read);
     printf
         ("%d connections in %ld real seconds, %ld bytes read per connection\n",
-         nConn, (long)time(NULL) - finishtime + maxtime, bytes_read / nConn);
+         nConn, (long)time(NULL) - finishtime + maxtime,
+         nConn > 0 ? bytes_read / nConn : 0l);
 
     /*
      * Now loop and time connections using the same session id over and over