X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=zlib.c;h=2b2c0c780e3fca6217c688298053a01aad724505;hb=c2d17ba3db0d2b14daf04e69a8c5ec73b023c1fe;hp=3c63d480c75e9939fb3a047f595b032e9509d681;hpb=7fc1495b1800f5207b634140ed66f7037e7f4bff;p=git.git diff --git a/zlib.c b/zlib.c index 3c63d480c..2b2c0c780 100644 --- a/zlib.c +++ b/zlib.c @@ -188,13 +188,20 @@ void git_deflate_init_gzip(git_zstream *strm, int level) strm->z.msg ? strm->z.msg : "no message"); } -void git_deflate_end(git_zstream *strm) +int git_deflate_abort(git_zstream *strm) { int status; zlib_pre_call(strm); status = deflateEnd(&strm->z); zlib_post_call(strm); + return status; +} + +void git_deflate_end(git_zstream *strm) +{ + int status = git_deflate_abort(strm); + if (status == Z_OK) return; error("deflateEnd: %s (%s)", zerr_to_string(status),