summaryrefslogtreecommitdiffstats
path: root/service.c
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2012-12-31 16:18:32 +0100
committerFelix Fietkau <nbd@openwrt.org>2012-12-31 16:18:32 +0100
commit38d78cba6ed4b42b0c1134bf05885d7e09537fde (patch)
treec404c99f025326cd7aad0d7177319067281e10f2 /service.c
parentd343dd9e9a64d4ae7d225ea29169e97fa8d116a1 (diff)
downloadunitd-38d78cba6ed4b42b0c1134bf05885d7e09537fde.tar
unitd-38d78cba6ed4b42b0c1134bf05885d7e09537fde.zip
use calloc_a
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'service.c')
-rw-r--r--service.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/service.c b/service.c
index 8dbb1e6..44b10be 100644
--- a/service.c
+++ b/service.c
@@ -54,9 +54,7 @@ service_alloc(const char *name)
struct service *s;
char *new_name;
- s = calloc(1, sizeof(*s) + strlen(name) + 1);
-
- new_name = (char *) (s + 1);
+ s = calloc_a(sizeof(*s), &new_name, strlen(name) + 1);
strcpy(new_name, name);
vlist_init(&s->instances, avl_strcmp, service_instance_update);