aboutsummaryrefslogtreecommitdiff
path: root/utils.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2024-11-12 13:12:08 +0100
committerToni Uhlig <matzeton@googlemail.com>2024-11-14 13:47:46 +0100
commit7e4c69635ae2ed6f073e4b4b3b67f3c31c554813 (patch)
tree6e222b9a46d969e76f473e198263ce9d5090c975 /utils.c
parent9105b393e1df76c9d4d11e3a75cd160a724493bd (diff)
Use `chmod_chown()` API from utils
* `chmod_chown()` returns EINVAL if path is NULL Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'utils.c')
-rw-r--r--utils.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/utils.c b/utils.c
index 25f16f81d..716bed230 100644
--- a/utils.c
+++ b/utils.c
@@ -396,6 +396,11 @@ int chmod_chown(char const * const path, mode_t mode, char const * const user, c
uid_t path_uid = (uid_t)-1;
gid_t path_gid = (gid_t)-1;
+ if (path == NULL)
+ {
+ return EINVAL;
+ }
+
if (mode != 0)
{
if (chmod(path, mode) != 0)