diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2016-04-05 03:09:59 -0700 |
---|---|---|
committer | Mika Lindqvist <postmaster@raasu.org> | 2016-04-27 20:32:51 +0300 |
commit | 4811aa74806df01ac7e5a28c7a6b42bc6795b7a4 (patch) | |
tree | 7b71dcb09109cb03cf4308cf601908811277310e /gzwrite.c | |
parent | ba7f0eb6e294306ac6d771216ea4442f2ea2d830 (diff) |
Loop on write() calls in gzwrite.c in case of non-blocking I/O.
Diffstat (limited to 'gzwrite.c')
-rw-r--r-- | gzwrite.c | 23 |
1 files changed, 13 insertions, 10 deletions
@@ -77,12 +77,14 @@ local int gz_comp(gz_statep state, int flush) { /* write directly if requested */ if (state->direct) { - got = write(state->fd, strm->next_in, strm->avail_in); - if (got < 0 || (unsigned)got != strm->avail_in) { - gz_error(state, Z_ERRNO, zstrerror()); - return -1; + while (strm->avail_in) { + if ((got = write(state->fd, strm->next_in, strm->avail_in)) < 0) { + gz_error(state, Z_ERRNO, zstrerror()); + return -1; + } + strm->avail_in -= got; + strm->next_in += got; } - strm->avail_in = 0; return 0; } @@ -92,16 +94,17 @@ local int gz_comp(gz_statep state, int flush) { /* write out current buffer contents if full, or if flushing, but if doing Z_FINISH then don't write until we get to Z_STREAM_END */ if (strm->avail_out == 0 || (flush != Z_NO_FLUSH && (flush != Z_FINISH || ret == Z_STREAM_END))) { - have = (unsigned)(strm->next_out - state->x.next); - if (have && ((got = write(state->fd, state->x.next, have)) < 0 || (unsigned)got != have)) { - gz_error(state, Z_ERRNO, zstrerror()); - return -1; + while (strm->next_out > state->x.next) { + if ((got = write(state->fd, state->x.next, strm->next_out - state->x.next)) < 0) { + gz_error(state, Z_ERRNO, zstrerror()); + return -1; + } + state->x.next += got; } if (strm->avail_out == 0) { strm->avail_out = state->size; strm->next_out = state->out; } - state->x.next = strm->next_out; } /* compress */ |