aboutsummaryrefslogtreecommitdiff
path: root/toys/other/taskset.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/other/taskset.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/other/taskset.c')
-rw-r--r--toys/other/taskset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/taskset.c b/toys/other/taskset.c
index 2b067d4a..bcc03478 100644
--- a/toys/other/taskset.c
+++ b/toys/other/taskset.c
@@ -90,7 +90,7 @@ void taskset_main(void)
if (!(toys.optflags & FLAG_p)) {
if (toys.optc < 2) error_exit("Needs 2 args");
do_taskset(getpid(), 1);
- xexec(toys.optargs+1);
+ xexec_optargs(1);
} else {
char *c;
pid_t pid = strtol(toys.optargs[toys.optc-1], &c, 10);