Save status so we know if to delete compressed file
This commit is contained in:
parent
924f93e848
commit
5c99581880
@ -174,7 +174,8 @@ extern int gunzip_main(int argc, char **argv)
|
||||
#endif
|
||||
if (magic2 == 0x8b) {
|
||||
check_header_gzip(src_fd);
|
||||
if (inflate(src_fd, dst_fd) != 0) {
|
||||
status = inflate(src_fd, dst_fd);
|
||||
if (status != 0) {
|
||||
error_msg("Error inflating");
|
||||
}
|
||||
check_trailer_gzip(src_fd);
|
||||
|
Loading…
Reference in New Issue
Block a user