*: change execl sentinels from NULL to (char*)0

Signed-off-by: Rich Felker <dalias@aerifal.cx>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Rich Felker 2013-06-30 13:45:17 +02:00 committed by Denys Vlasenko
parent e9b3fcc3e4
commit 16614e9bab
3 changed files with 3 additions and 3 deletions

View File

@ -103,7 +103,7 @@ void FAST_FUNC data_extract_to_command(archive_handle_t *archive_handle)
archive_handle->tar__to_command_shell, archive_handle->tar__to_command_shell,
"-c", "-c",
archive_handle->tar__to_command, archive_handle->tar__to_command,
NULL); (char *)0);
bb_perror_msg_and_die("can't execute '%s'", archive_handle->tar__to_command_shell); bb_perror_msg_and_die("can't execute '%s'", archive_handle->tar__to_command_shell);
} }
close(p[0]); close(p[0]);

View File

@ -567,7 +567,7 @@ static void NOINLINE vfork_compressor(int tar_fd, int gzip)
xmove_fd(gzipDataPipe.rd, 0); xmove_fd(gzipDataPipe.rd, 0);
xmove_fd(tar_fd, 1); xmove_fd(tar_fd, 1);
/* exec gzip/bzip2 program/applet */ /* exec gzip/bzip2 program/applet */
BB_EXECLP(zip_exec, zip_exec, "-f", NULL); BB_EXECLP(zip_exec, zip_exec, "-f", (char *)0);
vfork_exec_errno = errno; vfork_exec_errno = errno;
_exit(EXIT_FAILURE); _exit(EXIT_FAILURE);
} }

View File

@ -695,6 +695,6 @@ int getty_main(int argc UNUSED_PARAM, char **argv)
/* We use PATH because we trust that root doesn't set "bad" PATH, /* We use PATH because we trust that root doesn't set "bad" PATH,
* and getty is not suid-root applet */ * and getty is not suid-root applet */
/* With -n, logname == NULL, and login will ask for username instead */ /* With -n, logname == NULL, and login will ask for username instead */
BB_EXECLP(G.login, G.login, "--", logname, NULL); BB_EXECLP(G.login, G.login, "--", logname, (char *)0);
bb_error_msg_and_die("can't execute '%s'", G.login); bb_error_msg_and_die("can't execute '%s'", G.login);
} }