projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e143132
)
statsd plugin: malloc + memset -> calloc
author
Ruben Kerkhof
<ruben@rubenkerkhof.com>
Fri, 1 Apr 2016 16:19:59 +0000
(18:19 +0200)
committer
Ruben Kerkhof
<ruben@rubenkerkhof.com>
Fri, 1 Apr 2016 16:19:59 +0000
(18:19 +0200)
src/statsd.c
patch
|
blob
|
history
diff --git
a/src/statsd.c
b/src/statsd.c
index
d0a677e
..
5b7a6f1
100644
(file)
--- a/
src/statsd.c
+++ b/
src/statsd.c
@@
-127,14
+127,13
@@
static statsd_metric_t *statsd_metric_lookup_unsafe (char const *name, /* {{{ */
return (NULL);
}
- metric =
malloc (
sizeof (*metric));
+ metric =
calloc (1,
sizeof (*metric));
if (metric == NULL)
{
- ERROR ("statsd plugin:
m
alloc failed.");
+ ERROR ("statsd plugin:
c
alloc failed.");
sfree (key_copy);
return (NULL);
}
- memset (metric, 0, sizeof (*metric));
metric->type = type;
metric->latency = NULL;