X-Git-Url: https://git.octo.it/?a=blobdiff_plain;ds=sidebyside;f=src%2Futils_latency.c;h=bfb9292c4993ff0b8a4e1430fa33249b879d5d6b;hb=43954e07f30d05b2da8319749400c9bf4d01c23c;hp=7a607e430de7112f56c342cf956409eb4c5e1728;hpb=1fc00932fd49fa535551cc4bba09c4e4be059ab4;p=collectd.git diff --git a/src/utils_latency.c b/src/utils_latency.c index 7a607e43..bfb9292c 100644 --- a/src/utils_latency.c +++ b/src/utils_latency.c @@ -24,14 +24,15 @@ * Florian Forster **/ -#include -#include - #include "collectd.h" + #include "plugin.h" #include "utils_latency.h" #include "common.h" +#include +#include + #ifndef LLONG_MAX # define LLONG_MAX 9223372036854775807LL #endif @@ -96,9 +97,8 @@ static void change_bin_width (latency_counter_t *lc, cdtime_t latency) /* {{{ */ if (lc->num > 0) // if the histogram has data then iterate else skip { double width_change_ratio = ((double) old_bin_width) / ((double) new_bin_width); - size_t i; - for (i = 0; i < HISTOGRAM_NUM_BINS; i++) + for (size_t i = 0; i < HISTOGRAM_NUM_BINS; i++) { size_t new_bin = (size_t) (((double) i) * width_change_ratio); if (i == new_bin) @@ -121,10 +121,9 @@ latency_counter_t *latency_counter_create (void) /* {{{ */ { latency_counter_t *lc; - lc = malloc (sizeof (*lc)); + lc = calloc (1, sizeof (*lc)); if (lc == NULL) return (NULL); - memset (lc, 0, sizeof (*lc)); latency_counter_reset (lc); lc->bin_width = HISTOGRAM_DEFAULT_BIN_WIDTH;