src/utils_latency.c: Fix "Assigned value is garbage or undefined" warning.
authorFlorian Forster <octo@collectd.org>
Thu, 18 Jun 2015 15:45:52 +0000 (17:45 +0200)
committerFlorian Forster <octo@collectd.org>
Thu, 18 Jun 2015 15:45:52 +0000 (17:45 +0200)
src/utils_latency.c

index dfdef61..893bded 100644 (file)
@@ -117,6 +117,7 @@ latency_counter_t *latency_counter_create () /* {{{ */
   lc = malloc (sizeof (*lc));
   if (lc == NULL)
     return (NULL);
+  memset (lc, 0, sizeof (*lc));
 
   latency_counter_reset (lc);
   lc->bin_width = HISTOGRAM_DEFAULT_BIN_WIDTH;