X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Futils_latency.c;h=41af00cb14188b5e51f8a9d0e3d3e559e16a2967;hb=db35efb33e81d0a013e09a8a6ffa362ad5962f7c;hp=0b10c3ee91704d95f383a173ea2a2c97d44c80b6;hpb=21d99ee5d5e68019f2248ec7476b25bbe589dc67;p=collectd.git diff --git a/src/utils_latency.c b/src/utils_latency.c index 0b10c3ee..41af00cb 100644 --- a/src/utils_latency.c +++ b/src/utils_latency.c @@ -1,6 +1,6 @@ /** * collectd - src/utils_latency.c - * Copyright (C) 2013 Florian Forster + * Copyright (C) 2013 Florian Forster * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -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;