summaryrefslogtreecommitdiffstats
path: root/package/uci/patches/130-lua_fix_nested_foreach_delete.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/uci/patches/130-lua_fix_nested_foreach_delete.patch')
-rw-r--r--package/uci/patches/130-lua_fix_nested_foreach_delete.patch20
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 70c23ad7b..000000000
--- 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++;