From: Adam Stylinski Date: Mon, 29 Jan 2024 14:34:08 +0000 (-0500) Subject: Removing some outdated comments X-Git-Tag: 2.2.0~111 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2cd8d49d59302e950f5f0fc8f3ce7ae96d2c89d;p=thirdparty%2Fzlib-ng.git Removing some outdated comments These were left on my part, the inline copy + checksum is the very thing the function is doing. --- diff --git a/inflate.c b/inflate.c index fe55c498..37104e6e 100644 --- a/inflate.c +++ b/inflate.c @@ -272,9 +272,7 @@ static int32_t updatewindow(PREFIX3(stream) *strm, const uint8_t *end, uint32_t /* len state->wsize or less output bytes into the circular window */ if (len >= state->wsize) { /* Only do this if the caller specifies to checksum bytes AND the platform requires - * it (s/390 being the primary exception to this. Also, for now, do the adler checksums - * if not a gzip based header. The inline adler checksums will come in the near future, - * possibly the next commit */ + * it (s/390 being the primary exception to this) */ if (INFLATE_NEED_CHECKSUM(strm) && cksum) { /* We have to split the checksum over non-copied and copied bytes */ if (len > state->wsize)