From c2cd8d49d59302e950f5f0fc8f3ce7ae96d2c89d Mon Sep 17 00:00:00 2001 From: Adam Stylinski Date: Mon, 29 Jan 2024 09:34:08 -0500 Subject: [PATCH] Removing some outdated comments These were left on my part, the inline copy + checksum is the very thing the function is doing. --- inflate.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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) -- 2.47.2