From 2a7c909a1b2b35603dcfe7b39ce9dc809ee2d8be Mon Sep 17 00:00:00 2001 From: Craig Small Date: Wed, 15 Sep 2021 20:09:44 +1000 Subject: [PATCH] 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 6389deca5bf667f5fab5912acde78ba8e0febbc7 --- sysctl.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sysctl.c b/sysctl.c index 64676b2a..41806601 100644 --- a/sysctl.c +++ b/sysctl.c @@ -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) {