diff options
Diffstat (limited to 'archival')
-rw-r--r-- | archival/libunarchive/open_transformer.c | 11 | ||||
-rw-r--r-- | archival/tar.c | 4 |
2 files changed, 13 insertions, 2 deletions
diff --git a/archival/libunarchive/open_transformer.c b/archival/libunarchive/open_transformer.c index 0738e3db1..a6bc62321 100644 --- a/archival/libunarchive/open_transformer.c +++ b/archival/libunarchive/open_transformer.c | |||
@@ -20,7 +20,16 @@ int FAST_FUNC open_transformer(int src_fd, | |||
20 | 20 | ||
21 | xpiped_pair(fd_pipe); | 21 | xpiped_pair(fd_pipe); |
22 | 22 | ||
23 | pid = BB_MMU ? xfork() : xvfork(); | 23 | #if BB_MMU |
24 | pid = fork(); | ||
25 | if (pid == -1) | ||
26 | bb_perror_msg_and_die("can't fork"); | ||
27 | #else | ||
28 | pid = vfork(); | ||
29 | if (pid == -1) | ||
30 | bb_perror_msg_and_die("can't vfork"); | ||
31 | #endif | ||
32 | |||
24 | if (pid == 0) { | 33 | if (pid == 0) { |
25 | /* child process */ | 34 | /* child process */ |
26 | close(fd_pipe.rd); /* We don't want to read from the parent */ | 35 | close(fd_pipe.rd); /* We don't want to read from the parent */ |
diff --git a/archival/tar.c b/archival/tar.c index 17ac6c55a..526edb69d 100644 --- a/archival/tar.c +++ b/archival/tar.c | |||
@@ -536,7 +536,9 @@ static void NOINLINE vfork_compressor(int tar_fd, int gzip) | |||
536 | (void) &zip_exec; | 536 | (void) &zip_exec; |
537 | #endif | 537 | #endif |
538 | 538 | ||
539 | gzipPid = xvfork(); | 539 | gzipPid = vfork(); |
540 | if (gzipPid < 0) | ||
541 | bb_perror_msg_and_die("can't vfork"); | ||
540 | 542 | ||
541 | if (gzipPid == 0) { | 543 | if (gzipPid == 0) { |
542 | /* child */ | 544 | /* child */ |