sysctl: stop abusing parser->line
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
c8ab67cad8
commit
f427c80d02
@ -214,11 +214,11 @@ static int sysctl_handle_preload_file(const char *filename)
|
|||||||
// (but _whitespace_ from ends should be trimmed first (and we do it right))
|
// (but _whitespace_ from ends should be trimmed first (and we do it right))
|
||||||
//TODO: "var==1" is mishandled (must use "=1" as a value, but uses "1")
|
//TODO: "var==1" is mishandled (must use "=1" as a value, but uses "1")
|
||||||
while (config_read(parser, token, 2, 2, "# \t=", PARSE_NORMAL)) {
|
while (config_read(parser, token, 2, 2, "# \t=", PARSE_NORMAL)) {
|
||||||
|
char *tp;
|
||||||
sysctl_dots_to_slashes(token[0]);
|
sysctl_dots_to_slashes(token[0]);
|
||||||
/* Save ~4 bytes by using parser internals */
|
tp = xasprintf("%s=%s", token[0], token[1]);
|
||||||
/* parser->line is big enough for sprintf */
|
sysctl_act_recursive(tp);
|
||||||
sprintf(parser->line, "%s=%s", token[0], token[1]);
|
free(tp);
|
||||||
sysctl_act_recursive(parser->line);
|
|
||||||
}
|
}
|
||||||
if (ENABLE_FEATURE_CLEAN_UP)
|
if (ENABLE_FEATURE_CLEAN_UP)
|
||||||
config_close(parser);
|
config_close(parser);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user