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/nohup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys/posix/nohup.c') 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); } -- cgit v1.2.3