summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2010-11-01 14:43:00 +0100
committerFelix Fietkau <nbd@openwrt.org>2010-11-01 14:43:00 +0100
commit7115636d1cfa690480ab2d92a75f30656bb8aa9a (patch)
tree8b9d5db1d4d5ada05e8f11fea037d1acec40fa03
parent3fa65a20ae0fc77b951515bc5de7a0041adc9be1 (diff)
downloaduci-7115636d1cfa690480ab2d92a75f30656bb8aa9a.tar.gz
lua: use uci_foreach_element_safe in uci_lua_foreach() - patch by jow
-rw-r--r--lua/uci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/uci.c b/lua/uci.c
index 951860f..5a101ad 100644
--- 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++;