X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=libuci.c;h=51ce7dad7994bef1569c0d636a5f573dc67e998f;hb=71a0126dff93c4e7f81b9fe7d3629b4b706bd162;hp=0dd81fe3ba0f19bd2c28757ddb9aa2a95e398668;hpb=01ca9e5e467e4f324f52fd80a2ec4db999b3db48;p=project%2Fuci.git diff --git a/libuci.c b/libuci.c index 0dd81fe..51ce7da 100644 --- a/libuci.c +++ b/libuci.c @@ -59,7 +59,8 @@ void uci_free_context(struct uci_context *ctx) UCI_TRAP_SAVE(ctx, ignore); uci_cleanup(ctx); uci_foreach_element_safe(&ctx->root, tmp, e) { - uci_free_package(uci_to_package(e)); + struct uci_package *p = uci_to_package(e); + uci_free_package(&p); } free(ctx); UCI_TRAP_RESTORE(ctx);