projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
89609e3
)
write_graphite plugin: malloc + memset -> calloc
author
Ruben Kerkhof
<ruben@rubenkerkhof.com>
Fri, 1 Apr 2016 16:35:21 +0000
(18:35 +0200)
committer
Ruben Kerkhof
<ruben@rubenkerkhof.com>
Fri, 1 Apr 2016 16:35:21 +0000
(18:35 +0200)
src/write_graphite.c
patch
|
blob
|
history
diff --git
a/src/write_graphite.c
b/src/write_graphite.c
index
6baace1
..
0fa8bc3
100644
(file)
--- a/
src/write_graphite.c
+++ b/
src/write_graphite.c
@@
-486,13
+486,12
@@
static int wg_config_node (oconfig_item_t *ci)
int i;
int status = 0;
- cb =
malloc (
sizeof (*cb));
+ cb =
calloc (1,
sizeof (*cb));
if (cb == NULL)
{
- ERROR ("write_graphite plugin:
m
alloc failed.");
+ ERROR ("write_graphite plugin:
c
alloc failed.");
return (-1);
}
- memset (cb, 0, sizeof (*cb));
cb->sock_fd = -1;
cb->name = NULL;
cb->node = strdup (WG_DEFAULT_NODE);