From: Craig Small Date: Wed, 15 Sep 2021 10:09:44 +0000 (+1000) Subject: sysctl: Update previous patch for newlib X-Git-Tag: v4.0.0~127 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2a7c909a1b2b35603dcfe7b39ce9dc809ee2d8be;p=procps-ng 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 --- 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) {