diff options
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/mount.c | 1 | ||||
-rw-r--r-- | util-linux/script.c | 5 |
2 files changed, 4 insertions, 2 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 664d24f..3b77af7 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -890,7 +890,6 @@ get_mountport(struct pmap *pm_mnt, } #if BB_MMU -/* Unlike bb_daemonize(), parent does NOT exit here, but returns 0 */ static int daemonize(void) { int fd; diff --git a/util-linux/script.c b/util-linux/script.c index a6c1ab8..e70294e 100644 --- a/util-linux/script.c +++ b/util-linux/script.c @@ -87,7 +87,10 @@ int script_main(int argc ATTRIBUTE_UNUSED, char **argv) /* TODO: SIGWINCH? pass window size changes down to slave? */ - child_pid = xvfork(); + child_pid = vfork(); + if (child_pid < 0) { + bb_perror_msg_and_die("vfork"); + } if (child_pid) { /* parent */ |