diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-01 15:59:42 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-01 15:59:42 +0000 |
commit | 82604e973085f91f1b99cacea08963d0d1468084 (patch) | |
tree | 2de05bb2a6943ca6be0cc46f36e5fb07099aef40 /util-linux/script.c | |
parent | b111917972c1398ef96ef2d388c6c4ba57a8e9f7 (diff) | |
download | busybox-w32-82604e973085f91f1b99cacea08963d0d1468084.tar.gz busybox-w32-82604e973085f91f1b99cacea08963d0d1468084.tar.bz2 busybox-w32-82604e973085f91f1b99cacea08963d0d1468084.zip |
revert last two commits. vfork cannot be used in subroutine,
it trashes stack on return
Diffstat (limited to 'util-linux/script.c')
-rw-r--r-- | util-linux/script.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/util-linux/script.c b/util-linux/script.c index a6c1ab88a..e70294e6c 100644 --- a/util-linux/script.c +++ b/util-linux/script.c | |||
@@ -87,7 +87,10 @@ int script_main(int argc ATTRIBUTE_UNUSED, char **argv) | |||
87 | 87 | ||
88 | /* TODO: SIGWINCH? pass window size changes down to slave? */ | 88 | /* TODO: SIGWINCH? pass window size changes down to slave? */ |
89 | 89 | ||
90 | child_pid = xvfork(); | 90 | child_pid = vfork(); |
91 | if (child_pid < 0) { | ||
92 | bb_perror_msg_and_die("vfork"); | ||
93 | } | ||
91 | 94 | ||
92 | if (child_pid) { | 95 | if (child_pid) { |
93 | /* parent */ | 96 | /* parent */ |