From: Ruben Kerkhof Date: Thu, 31 May 2018 14:01:41 +0000 (+0200) Subject: Remove unused asubst function X-Git-Tag: collectd-5.9.0~215 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ec93698458723f85ea218be947512cf98b3f9be0;p=thirdparty%2Fcollectd.git Remove unused asubst function --- diff --git a/src/daemon/utils_subst.c b/src/daemon/utils_subst.c index 546ca186f..28924e449 100644 --- a/src/daemon/utils_subst.c +++ b/src/daemon/utils_subst.c @@ -90,28 +90,6 @@ char *subst(char *buf, size_t buflen, const char *string, size_t off1, return buf; } /* subst */ -char *asubst(const char *string, int off1, int off2, const char *replacement) { - char *buf; - int len; - - char *ret; - - if ((NULL == string) || (0 > off1) || (0 > off2) || (off1 > off2) || - (NULL == replacement)) - return NULL; - - len = off1 + strlen(replacement) + strlen(string) - off2 + 1; - - buf = malloc(len); - if (NULL == buf) - return NULL; - - ret = subst(buf, len, string, off1, off2, replacement); - if (NULL == ret) - free(buf); - return ret; -} /* asubst */ - char *subst_string(char *buf, size_t buflen, const char *string, const char *needle, const char *replacement) { size_t needle_len; diff --git a/src/daemon/utils_subst.h b/src/daemon/utils_subst.h index a10b25890..7807555cc 100644 --- a/src/daemon/utils_subst.h +++ b/src/daemon/utils_subst.h @@ -69,17 +69,6 @@ char *subst(char *buf, size_t buflen, const char *string, size_t off1, size_t off2, const char *replacement); -/* - * asubst: - * - * This function is very similar to subst(). It differs in that it - * automatically allocates the memory required for the return value which the - * user then has to free himself. - * - * Returns the newly allocated result string on success, NULL else. - */ -char *asubst(const char *string, int off1, int off2, const char *replacement); - /* * subst_string: *