diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2024-11-12 13:12:08 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2024-11-14 13:47:46 +0100 |
commit | 7e4c69635ae2ed6f073e4b4b3b67f3c31c554813 (patch) | |
tree | 6e222b9a46d969e76f473e198263ce9d5090c975 /utils.c | |
parent | 9105b393e1df76c9d4d11e3a75cd160a724493bd (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.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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) |