sysctl: Update previous patch for newlib

This change was cherry picked from old library branch but
missed the change to check the path.

References:
 commit 6389deca5b
This commit is contained in:
Craig Small 2021-09-15 20:09:44 +10:00
parent 6389deca5b
commit 2a7c909a1b

View File

@ -543,9 +543,8 @@ static int WriteSetting(
return rc;
}
if (!is_proc_path(tmpname)) {
rc = -1;
goto out;
if (!is_proc_path(path)) {
return EXIT_FAILURE;
}
if ((ts.st_mode & S_IWUSR) == 0) {