summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjilles <jilles@FreeBSD.org>2013-05-09 11:43:45 +0000
committerjilles <jilles@FreeBSD.org>2013-05-09 11:43:45 +0000
commita222062d021f2ab91e8ea63fa5f619a8eb0f92c7 (patch)
tree73f946557fd0b889527b4ffe34692aaa705d62d5
parenta61a6fd73b4782cf6589cc8d2c1e5c1b2dd336c0 (diff)
downloadFreeBSD-src-a222062d021f2ab91e8ea63fa5f619a8eb0f92c7.zip
FreeBSD-src-a222062d021f2ab91e8ea63fa5f619a8eb0f92c7.tar.gz
wordexp(): Simplify code by deferring work to sh.
-rw-r--r--lib/libc/gen/wordexp.c16
1 files changed, 3 insertions, 13 deletions
diff --git a/lib/libc/gen/wordexp.c b/lib/libc/gen/wordexp.c
index b518b57..7d8b8f9 100644
--- a/lib/libc/gen/wordexp.c
+++ b/lib/libc/gen/wordexp.c
@@ -139,25 +139,15 @@ we_askshell(const char *words, wordexp_t *we, int flags)
* We are the child; just get /bin/sh to run the wordexp
* builtin on `words'.
*/
- int devnull;
- char *cmd;
-
(void)_sigprocmask(SIG_SETMASK, &oldsigblock, NULL);
_close(pdes[0]);
if (_dup2(pdes[1], STDOUT_FILENO) < 0)
_exit(1);
_close(pdes[1]);
- if (asprintf(&cmd, "wordexp %s\n", words) < 0)
- _exit(1);
- if ((flags & WRDE_SHOWERR) == 0) {
- if ((devnull = _open(_PATH_DEVNULL, O_RDWR, 0666)) < 0)
- _exit(1);
- if (_dup2(devnull, STDERR_FILENO) < 0)
- _exit(1);
- _close(devnull);
- }
execl(_PATH_BSHELL, "sh", flags & WRDE_UNDEF ? "-u" : "+u",
- "-c", cmd, (char *)NULL);
+ "-c", "eval \"$1\";eval \"wordexp $2\"", "",
+ flags & WRDE_SHOWERR ? "" : "exec 2>/dev/null", words,
+ (char *)NULL);
_exit(1);
}
OpenPOWER on IntegriCloud