diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2003-11-15 23:19:05 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2003-11-15 23:19:05 +0000 |
commit | 5699b8525e855a0e851725980964e8755e365f5b (patch) | |
tree | fe3d7ead1f80f5b56e44e52a651f368adf92c91d /archival/gunzip.c | |
parent | 54ac057c0016ac23b7367342f4834e33cf7d47d7 (diff) |
Move from read_gz to the pipe()+fork() method.
open_transformer(), common code for pipe+fork.
Function pointer for read() no longer needed.
Allow inflate to be initialised with a specified buffer size to avoid
over-reading.
Reset static variables in inflate_get_next_window to fix a bug where
only the first file in a .zip would be be extracted.
Diffstat (limited to 'archival/gunzip.c')
-rw-r--r-- | archival/gunzip.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/archival/gunzip.c b/archival/gunzip.c index 7d382b895..f229ae524 100644 --- a/archival/gunzip.c +++ b/archival/gunzip.c @@ -179,11 +179,10 @@ extern int gunzip_main(int argc, char **argv) #endif if (magic2 == 0x8b) { check_header_gzip(src_fd); - status = inflate(src_fd, dst_fd); + status = inflate_gunzip(src_fd, dst_fd); if (status != 0) { bb_error_msg_and_die("Error inflating"); } - check_trailer_gzip(src_fd); } else { bb_error_msg_and_die("Invalid magic"); } |