These were left on my part, the inline copy + checksum is the very
thing the function is doing.
/* 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)