projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dbf349e
)
src/utils_latency.c: Fix "Assigned value is garbage or undefined" warning.
author
Florian Forster
<octo@collectd.org>
Thu, 18 Jun 2015 15:45:52 +0000
(17:45 +0200)
committer
Florian Forster
<octo@collectd.org>
Thu, 18 Jun 2015 15:45:52 +0000
(17:45 +0200)
src/utils_latency.c
patch
|
blob
|
history
diff --git
a/src/utils_latency.c
b/src/utils_latency.c
index
dfdef61
..
893bded
100644
(file)
--- a/
src/utils_latency.c
+++ b/
src/utils_latency.c
@@
-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;