Statsd: avoid doing a division by zero when calculating the average if we didn't...
authorWilfried Goesgens <dothebart@citadel.org>
Sat, 21 Jun 2014 19:14:28 +0000 (21:14 +0200)
committerMarc Fournier <marc.fournier@camptocamp.com>
Fri, 6 Mar 2015 09:23:22 +0000 (10:23 +0100)
src/utils_latency.c

index 96ce8e3..470fbb8 100644 (file)
@@ -209,7 +209,7 @@ cdtime_t latency_counter_get_average (latency_counter_t *lc) /* {{{ */
 {
   double average;
 
-  if (lc == NULL)
+  if ((lc == NULL) || (lc->num == 0))
     return (0);
 
   average = CDTIME_T_TO_DOUBLE (lc->sum) / ((double) lc->num);