sysctl: fix gcc warning (false positive)
This commit is contained in:
parent
e40e76f3cd
commit
d6e8f9450c
@ -97,7 +97,8 @@ static int sysctl_handle_preload_file(const char *filename)
|
|||||||
static int sysctl_act_on_setting(char *setting)
|
static int sysctl_act_on_setting(char *setting)
|
||||||
{
|
{
|
||||||
int fd, retval = EXIT_SUCCESS;
|
int fd, retval = EXIT_SUCCESS;
|
||||||
char *cptr, *outname, *value;
|
char *cptr, *outname;
|
||||||
|
char *value = value; /* for compiler */
|
||||||
|
|
||||||
outname = xstrdup(setting);
|
outname = xstrdup(setting);
|
||||||
|
|
||||||
@ -235,7 +236,7 @@ static void sysctl_dots_to_slashes(char *name)
|
|||||||
*/
|
*/
|
||||||
end = name + strlen(name);
|
end = name + strlen(name);
|
||||||
last_good = name - 1;
|
last_good = name - 1;
|
||||||
*end = '.'; /* trick the loop in trying full name too */
|
*end = '.'; /* trick the loop into trying full name too */
|
||||||
|
|
||||||
again:
|
again:
|
||||||
cptr = end;
|
cptr = end;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user