X-Git-Url: http://git.archive.openwrt.org/?p=project%2Ffirewall3.git;a=blobdiff_plain;f=utils.c;h=34464ee638c1e04c028a337469cd32b125c3f335;hp=c9ca2069af832b8cd48b101623f69791367b86be;hb=bd574af529c0661c125336bdd9d0d1f2e09287c3;hpb=275a37dbf280bd471ebb2c673267c49a81071bbb diff --git a/utils.c b/utils.c index c9ca206..34464ee 100644 --- a/utils.c +++ b/utils.c @@ -483,3 +483,25 @@ fw3_set_running(void *object, struct list_head *dest) else if (!dest && o->running_list.next) list_del(&o->running_list); } + +void +fw3_free_object(void *obj, const void *opts) +{ + const struct fw3_option *ol; + struct list_head *list, *cur, *tmp; + + for (ol = opts; ol->name; ol++) + { + if (!ol->elem_size) + continue; + + list = (struct list_head *)((char *)obj + ol->offset); + list_for_each_safe(cur, tmp, list) + { + list_del(cur); + free(cur); + } + } + + free(obj); +}