From 2e4da5e08cb62a75c1027f8012dfbd5e45ba4ec2 Mon Sep 17 00:00:00 2001 From: Mike Yuan Date: Wed, 15 May 2024 23:30:24 +0800 Subject: [PATCH] shutdown: use execl where appropriate --- src/shutdown/shutdown.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/shutdown/shutdown.c b/src/shutdown/shutdown.c index 115a4b6eb7a..49f986f8c8a 100644 --- a/src/shutdown/shutdown.c +++ b/src/shutdown/shutdown.c @@ -624,13 +624,9 @@ int main(int argc, char *argv[]) { r = safe_fork("(sd-kexec)", FORK_RESET_SIGNALS|FORK_CLOSE_ALL_FDS|FORK_LOG|FORK_WAIT, NULL); if (r == 0) { - const char * const args[] = { - KEXEC, "-e", NULL - }; - /* Child */ - execv(args[0], (char * const *) args); + (void) execl(KEXEC, KEXEC, "-e", NULL); log_debug_errno(errno, "Failed to execute '" KEXEC "' binary, proceeding with reboot(RB_KEXEC): %m"); /* execv failed (kexec binary missing?), so try simply reboot(RB_KEXEC) */ -- 2.47.3