aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/time.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2013-07-18 18:20:03 -0500
committerRob Landley <rob@landley.net>2013-07-18 18:20:03 -0500
commita817a02c00a06fbf2090259320968addb5f46e58 (patch)
tree626d9761e1346afc168f64cbfe4dfba9538c20ef /toys/posix/time.c
parent39af4ae3e61d352c3faa7d1b87e6ac6fdb69add1 (diff)
downloadtoybox-a817a02c00a06fbf2090259320968addb5f46e58.tar.gz
Replace users of xexec(toys.optargs) with xexec_optargs(0) to avoid free/reuse bug during argument parsing.
Diffstat (limited to 'toys/posix/time.c')
-rw-r--r--toys/posix/time.c2
1 files changed, 1 insertions, 1 deletions
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;