summaryrefslogtreecommitdiff
path: root/uci.c
diff options
context:
space:
mode:
Diffstat (limited to 'uci.c')
-rw-r--r--uci.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/uci.c b/uci.c
index 0de6f3e..522c24e 100644
--- a/uci.c
+++ b/uci.c
@@ -1286,6 +1286,8 @@ rpc_uci_changes(struct ubus_context *ctx, struct ubus_object *obj,
uci_unload(cursor, p);
}
+ free(configs);
+
blobmsg_close_table(&buf, c);
ubus_send_reply(ctx, req, buf.head);
@@ -1390,6 +1392,8 @@ rpc_uci_configs(struct ubus_context *ctx, struct ubus_object *obj,
for (i = 0; configs[i]; i++)
blobmsg_add_string(&buf, NULL, configs[i]);
+ free(configs);
+
blobmsg_close_array(&buf, c);
ubus_send_reply(ctx, req, buf.head);