diff options
author | Denys Vlasenko | 2017-08-07 18:59:35 +0200 |
---|---|---|
committer | Denys Vlasenko | 2017-08-07 18:59:35 +0200 |
commit | c9c1ccc4ed7e7525a2e3c07d855c7a27c3534430 (patch) | |
tree | fe5302b06064e90b536e9110cfb4a9dc1dc70adf /shell/ash.c | |
parent | f2cf1cc716216308a8a6d07e3afab23be07a6b02 (diff) | |
download | busybox-c9c1ccc4ed7e7525a2e3c07d855c7a27c3534430.zip busybox-c9c1ccc4ed7e7525a2e3c07d855c7a27c3534430.tar.gz |
noexec: do GETOPT_RESET() before entering APPLET_main()
hush -c 'yes | head -1' was not happy.
function old new delta
tryexec 159 169 +10
pseudo_exec_argv 328 338 +10
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shell/ash.c b/shell/ash.c index 507d15c..bedd27b 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -7803,6 +7803,7 @@ tryexec(IF_FEATURE_SH_STANDALONE(int applet_no,) const char *cmd, char **argv, c while (*envp) putenv(*envp++); popredir(/*drop:*/ 1); + GETOPT_RESET(); //TODO: think pidof, pgrep, pkill! //set_task_comm() makes our pidof find NOEXECs (e.g. "yes >/dev/null"), //but one from procps-ng-3.3.10 needs more! |