From a817a02c00a06fbf2090259320968addb5f46e58 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Thu, 18 Jul 2013 18:20:03 -0500 Subject: Replace users of xexec(toys.optargs) with xexec_optargs(0) to avoid free/reuse bug during argument parsing. --- toys/posix/nice.c | 2 +- toys/posix/nohup.c | 2 +- toys/posix/time.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'toys/posix') diff --git a/toys/posix/nice.c b/toys/posix/nice.c index 4b587ee6..bc25d358 100644 --- a/toys/posix/nice.c +++ b/toys/posix/nice.c @@ -34,5 +34,5 @@ void nice_main(void) errno = 0; if (nice(TT.priority)==-1 && errno) perror_exit("Can't set priority"); - xexec(toys.optargs); + xexec_optargs(0); } diff --git a/toys/posix/nohup.c b/toys/posix/nohup.c index b936a093..e4354554 100644 --- a/toys/posix/nohup.c +++ b/toys/posix/nohup.c @@ -36,5 +36,5 @@ void nohup_main(void) close(0); open("/dev/null", O_RDONLY); } - xexec(toys.optargs); + xexec_optargs(0); } diff --git a/toys/posix/time.c b/toys/posix/time.c index 0ccba19c..2648cd1c 100644 --- a/toys/posix/time.c +++ b/toys/posix/time.c @@ -27,7 +27,7 @@ void time_main(void) struct timeval tv, tv2; gettimeofday(&tv, NULL); - if (!(pid = fork())) xexec(toys.optargs); + if (!(pid = fork())) xexec_optargs(0); else { int stat; struct rusage ru; -- cgit v1.2.3