From: Wayne Davison Date: Mon, 21 Dec 2009 18:13:52 +0000 (-0800) Subject: Don't die if inflate() returns Z_BUF_ERROR in see_deflate_token(). X-Git-Tag: v3.0.7pre1~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e0b1b82d84bb39d03387a3c54d5955353c128cf2;p=thirdparty%2Frsync.git Don't die if inflate() returns Z_BUF_ERROR in see_deflate_token(). --- diff --git a/token.c b/token.c index 950e6373..3e068a97 100644 --- a/token.c +++ b/token.c @@ -598,7 +598,7 @@ static void see_deflate_token(char *buf, int32 len) rx_strm.next_out = (Bytef *)dbuf; rx_strm.avail_out = AVAIL_OUT_SIZE(CHUNK_SIZE); r = inflate(&rx_strm, Z_SYNC_FLUSH); - if (r != Z_OK) { + if (r != Z_OK && r != Z_BUF_ERROR) { rprintf(FERROR, "inflate (token) returned %d\n", r); exit_cleanup(RERR_STREAMIO); }