diff options
author | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-01-19 20:48:07 +0000 |
---|---|---|
committer | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-01-19 20:48:07 +0000 |
commit | 38df04989f5f979596bcceee9d66e68b699b5188 (patch) | |
tree | 7768896f75b955d0f94704a4cff4f02af5eb6587 /package/uci/patches | |
parent | 8e454c7abc82c55386d2f0d7227bd47facf9dfd9 (diff) |
[package] uci: use latest git, fixes reorder operation and incorperates nested delete patch
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25048 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/uci/patches')
-rw-r--r-- | package/uci/patches/130-lua_fix_nested_foreach_delete.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/package/uci/patches/130-lua_fix_nested_foreach_delete.patch b/package/uci/patches/130-lua_fix_nested_foreach_delete.patch deleted file mode 100644 index 70c23ad7b7..0000000000 --- a/package/uci/patches/130-lua_fix_nested_foreach_delete.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/lua/uci.c -+++ b/lua/uci.c -@@ -266,7 +266,7 @@ uci_lua_foreach(lua_State *L) - { - struct uci_context *ctx; - struct uci_package *p; -- struct uci_element *e; -+ struct uci_element *e, *tmp; - const char *package, *type; - bool ret = false; - int offset = 0; -@@ -287,7 +287,7 @@ uci_lua_foreach(lua_State *L) - if (!p) - goto done; - -- uci_foreach_element(&p->sections, e) { -+ uci_foreach_element_safe(&p->sections, tmp, e) { - struct uci_section *s = uci_to_section(e); - - i++; |