]> pilppa.org Git - uci.git/blobdiff - libuci.c
proper commit support, better debugging
[uci.git] / libuci.c
index 0dd81fe3ba0f19bd2c28757ddb9aa2a95e398668..51ce7dad7994bef1569c0d636a5f573dc67e998f 100644 (file)
--- 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);