]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Removing some outdated comments
authorAdam Stylinski <kungfujesus06@gmail.com>
Mon, 29 Jan 2024 14:34:08 +0000 (09:34 -0500)
committerHans Kristian Rosbach <hk-github@circlestorm.org>
Mon, 29 Jan 2024 19:00:10 +0000 (20:00 +0100)
These were left on my part, the inline copy + checksum is the very
thing the function is doing.

inflate.c

index fe55c498e3122c48acde65e273951ea9e0b280b5..37104e6e6302d098e6e6ae9bfde07726d6ed28c8 100644 (file)
--- 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)