projects
/
oweals
/
uci.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3fa65a2
)
lua: use uci_foreach_element_safe in uci_lua_foreach() - patch by jow
author
Felix Fietkau
<nbd@openwrt.org>
Mon, 1 Nov 2010 13:43:00 +0000
(14:43 +0100)
committer
Felix Fietkau
<nbd@openwrt.org>
Mon, 1 Nov 2010 13:43:00 +0000
(14:43 +0100)
lua/uci.c
patch
|
blob
|
history
diff --git
a/lua/uci.c
b/lua/uci.c
index 951860f9be520291b96634449c1b204cf9f2f02a..5a101ad7c57303c04082f8a44b7b4c244a20d77c 100644
(file)
--- 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++;