projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
72f3b39
)
gmond: malloc + memset -> calloc
author
Ruben Kerkhof
<ruben@rubenkerkhof.com>
Fri, 1 Apr 2016 14:29:53 +0000
(16:29 +0200)
committer
Ruben Kerkhof
<ruben@rubenkerkhof.com>
Fri, 1 Apr 2016 14:29:53 +0000
(16:29 +0200)
src/gmond.c
patch
|
blob
|
history
diff --git
a/src/gmond.c
b/src/gmond.c
index
9b5ceb7
..
c763cd9
100644
(file)
--- a/
src/gmond.c
+++ b/
src/gmond.c
@@
-454,10
+454,9
@@
static staging_entry_t *staging_entry_get (const char *host, /* {{{ */
return (se);
/* insert new entry */
- se =
malloc (
sizeof (*se));
+ se =
calloc (1,
sizeof (*se));
if (se == NULL)
return (NULL);
- memset (se, 0, sizeof (*se));
sstrncpy (se->key, key, sizeof (se->key));
se->flags = 0;