From: John Crispin Date: Tue, 22 Sep 2015 04:12:08 +0000 (+0200) Subject: unbreak acl allocation X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fubus.git;a=commitdiff_plain;h=f7f899d2d3e6278e81ace5b109f989c0d6eca561;hp=7ec9b8dec77b969bfc860995f96fe91fd40ba5e4;ds=sidebyside unbreak acl allocation Signed-off-by: John Crispin --- diff --git a/ubusd_acl.c b/ubusd_acl.c index 4d047b7..1d965c0 100644 --- a/ubusd_acl.c +++ b/ubusd_acl.c @@ -206,7 +206,7 @@ ubusd_acl_alloc_obj(struct ubusd_acl_file *file, const char *obj) struct ubusd_acl_obj *o; char *k; - o = calloc_a(1, sizeof(*o), &k, strlen(obj) + 1); + o = calloc_a(sizeof(*o), &k, strlen(obj) + 1); o->user = file->user; o->group = file->group; o->avl.key = k;