summaryrefslogtreecommitdiffstats
path: root/libbb/unzip.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/unzip.c')
-rw-r--r--libbb/unzip.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libbb/unzip.c b/libbb/unzip.c
index 058aa07..894b788 100644
--- a/libbb/unzip.c
+++ b/libbb/unzip.c
@@ -98,7 +98,7 @@ static const unsigned short mask_bits[] = {
static void abort_gzip()
{
error_msg("gzip aborted\n");
- exit(ERROR);
+ _exit(ERROR);
}
static void make_crc_table()
@@ -148,7 +148,8 @@ static void flush_window(void)
}
if (fwrite(window, 1, outcnt, out_file) != outcnt) {
- error_msg_and_die("Couldnt write");
+ error_msg("Couldnt write");
+ _exit(EXIT_FAILURE);
}
bytes_out += (unsigned long) outcnt;
outcnt = 0;