aboutsummaryrefslogtreecommitdiff
path: root/toys/other/setsid.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/setsid.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/setsid.c')
-rw-r--r--toys/other/setsid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/setsid.c b/toys/other/setsid.c
index 59a1d78f..8f0a0647 100644
--- a/toys/other/setsid.c
+++ b/toys/other/setsid.c
@@ -24,5 +24,5 @@ void setsid_main(void)
setpgid(0,0);
tcsetpgrp(0, getpid());
}
- xexec(toys.optargs);
+ xexec_optargs(0);
}