diff options
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/gz_open.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libbb/gz_open.c b/libbb/gz_open.c index 3107af9..330ba60 100644 --- a/libbb/gz_open.c +++ b/libbb/gz_open.c @@ -56,10 +56,6 @@ extern FILE *gz_open(FILE *compressed_file, int *pid) extern void gz_close(int gunzip_pid) { - if (kill(gunzip_pid, SIGTERM) == -1) { - perror_msg_and_die("%s: kill(gunzip_pid)", __FUNCTION__); - } - if (waitpid(gunzip_pid, NULL, 0) == -1) { perror_msg("%s wait", __FUNCTION__); } |