1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-10 01:17:44 +03:00

shared/exec-util: null_or_empty_path() does not return boolean

We shouldn't report that the file is empty if the stating fails. Let's do the
same as in other places, and just ignore the error and let the subsequent
operation fail.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2023-03-28 18:50:31 +02:00
parent 3e2d735328
commit 7d0c47dad0

View File

@ -39,7 +39,7 @@ static int do_spawn(const char *path, char *argv[], int stdout_fd, pid_t *pid, b
pid_t _pid;
int r;
if (null_or_empty_path(path)) {
if (null_or_empty_path(path) > 0) {
log_debug("%s is empty (a mask).", path);
return 0;
}