unbreak acl allocation
authorJohn Crispin <blogic@openwrt.org>
Tue, 22 Sep 2015 04:12:08 +0000 (06:12 +0200)
committerJohn Crispin <blogic@openwrt.org>
Tue, 22 Sep 2015 04:12:08 +0000 (06:12 +0200)
Signed-off-by: John Crispin <blogic@openwrt.org>
ubusd_acl.c

index 4d047b7..1d965c0 100644 (file)
@@ -206,7 +206,7 @@ ubusd_acl_alloc_obj(struct ubusd_acl_file *file, const char *obj)
        struct ubusd_acl_obj *o;
        char *k;
 
        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;
        o->user = file->user;
        o->group = file->group;
        o->avl.key = k;