summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2015-05-17 14:13:02 +0200
committerJo-Philipp Wich <jow@openwrt.org>2015-05-17 14:13:02 +0200
commit3d655417ab44d93aad56a6d4a668daf24b127b84 (patch)
tree4c1381f206b742b548739b7b1829b573c6316e50
parent9a6bfa110a5f8caa10951921b63bafdbb6e97d33 (diff)
downloadrpcd-3d655417ab44d93aad56a6d4a668daf24b127b84.tar.gz
uci: unload package on revert
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
-rw-r--r--uci.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/uci.c b/uci.c
index acbbfd8..8b5dafd 100644
--- a/uci.c
+++ b/uci.c
@@ -1150,7 +1150,10 @@ rpc_uci_revert_commit(struct ubus_context *ctx, struct blob_attr *msg, bool comm
else
{
if (!uci_lookup_ptr(cursor, &ptr, NULL, true) && ptr.p)
+ {
uci_revert(cursor, &ptr);
+ uci_unload(cursor, ptr.p);
+ }
}
return rpc_uci_status();