X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fdaemon%2Futils_subst.c;h=1bc28f724ea22e927e6981b09d28fd0d8de2bf8c;hb=4a40badfaaa7f3b07e1d9654527ab9780c898819;hp=cfa1c7642f0d01b5b5bbdfb2be78dbf38bcb6968;hpb=6164fe4456716e6dc36aaa2ab617b104a7ac5ff3;p=collectd.git diff --git a/src/daemon/utils_subst.c b/src/daemon/utils_subst.c index cfa1c764..1bc28f72 100644 --- a/src/daemon/utils_subst.c +++ b/src/daemon/utils_subst.c @@ -29,6 +29,7 @@ */ #include "collectd.h" + #include "common.h" #include "utils_subst.h" @@ -102,7 +103,7 @@ char *asubst (const char *string, int off1, int off2, const char *replacement) len = off1 + strlen (replacement) + strlen (string) - off2 + 1; - buf = (char *)malloc (len); + buf = malloc (len); if (NULL == buf) return NULL;