projects
/
project
/
uci.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
12bdbcd
)
use strsep instead of strtok to avoid a segfault
author
Felix Fietkau
<nbd@openwrt.org>
Wed, 6 Feb 2008 14:47:04 +0000
(15:47 +0100)
committer
Felix Fietkau
<nbd@openwrt.org>
Wed, 6 Feb 2008 14:47:04 +0000
(15:47 +0100)
util.c
patch
|
blob
|
history
diff --git
a/util.c
b/util.c
index 1d71335f7384d4e2149013686143048784784916..eb50b89c30792ac6983a736cc8cf2581d5616e9c 100644
(file)
--- a/
util.c
+++ b/
util.c
@@
-103,15
+103,15
@@
int uci_parse_tuple(struct uci_context *ctx, char *str, char **package, char **s
last++;
}
- *package = str
tok(
str, ".");
+ *package = str
sep(&
str, ".");
if (!*package || !uci_validate_name(*package))
goto error;
- *section = str
tok(NULL
, ".");
+ *section = str
sep(&str
, ".");
if (!*section)
goto lastval;
- *option = str
tok(NULL
, ".");
+ *option = str
sep(&str
, ".");
if (!*option)
goto lastval;