projects
/
platform
/
upstream
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
52881e9
)
hust: add a comment
author
Denis Vlasenko
<vda.linux@googlemail.com>
Sat, 21 Apr 2007 17:28:51 +0000
(17:28 -0000)
committer
Denis Vlasenko
<vda.linux@googlemail.com>
Sat, 21 Apr 2007 17:28:51 +0000
(17:28 -0000)
shell/hush.c
patch
|
blob
|
history
diff --git
a/shell/hush.c
b/shell/hush.c
index
046e098
..
b367a08
100644
(file)
--- a/
shell/hush.c
+++ b/
shell/hush.c
@@
-503,6
+503,10
@@
static const char *set_cwd(void)
return cwd;
}
+// It seems ALL built-ins ever use *only* child->argv in child param.
+// Passing argv directly may make 'child->argv += n' modifications
+// unneeded on vfork codepaths.
+
/* built-in 'eval' handler */
static int builtin_eval(struct child_prog *child)
{