diff options
author | John Crispin <blogic@openwrt.org> | 2013-09-04 16:25:15 +0200 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2013-09-13 17:35:55 +0200 |
commit | 11a65fae34ee7900453c079eb80755f135395258 (patch) | |
tree | 36ab518079f51b4005a949540acb451ccf2960ae | |
parent | 98218b6aa89777ae392be871b9119e10fda68acb (diff) | |
download | unitd-11a65fae34ee7900453c079eb80755f135395258.tar unitd-11a65fae34ee7900453c079eb80755f135395258.zip |
remove now unused variable
Signed-off-by: John Crispin <blogic@openwrt.org>
-rw-r--r-- | service.c | 1 | ||||
-rw-r--r-- | service.h | 1 |
2 files changed, 0 insertions, 2 deletions
@@ -136,7 +136,6 @@ service_delete(struct service *s) trigger_del(s); s->trigger = NULL; free(s->trigger); - free(s->config); free(s); } @@ -24,7 +24,6 @@ struct service { struct avl_node avl; const char *name; - struct blob_attr *config; struct blob_attr *trigger; struct vlist_tree instances; }; |