python / python/cpython

`zlib.crc32_combine()` hangs on a negative length and `adler32_combine()` returns rubbish

Open
#156,180 0 comments 0 reactions 1 assignee View on GitHub

@StanFromIreland is already working on this.

Since Aug 21, 2026.

3.15 3.16 extension-modules type-bug
Dominant language
Python
Stars
77.2k
Forks
35.9k
PR merge metrics
PR metrics pending

Description

Bug report

Bug description:

From the manual:

adler32_combine: If len2 is negative, the result has no meaning or utility.

crc32_combine: len2 must be non-negative.

To reproduce run:

$ python3.15 -c "import zlib; zlib.crc32_combine(0, 0, -5)"

which hangs due to a loop in zlib. And,

$ python3.15 -c "import zlib; print(zlib.adler32_combine(0, 0, -5))"
4294967295

which is rubbish.

CPython versions tested on:

CPython main branch

Operating systems tested on:

No response

Linked PRs
  • gh-156181
  • gh-156239

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.