`zlib.crc32_combine()` hangs on a negative length and `adler32_combine()` returns rubbish
Offen
@StanFromIreland arbeitet bereits daran.
Seit 21.8.2026.
3.15
3.16
extension-modules
type-bug
- Vorherrschende Sprache
- Python
- Sterne
- 77.2k
- Forks
- 35.9k
- PR-Merge-Kennzahlen
- PR-Kennzahlen ausstehend
Beschreibung
Bug report
Bug description:
From the manual:
adler32_combine: Iflen2is negative, the result has no meaning or utility.
crc32_combine:len2must 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
Beitragsleitfaden
Erste Schritte
- Lies das ganze Issue und danach den Beitragsleitfaden des Projekts.
- Schreib ins Issue, dass du es übernimmst — das erspart doppelte Arbeit.
- Forke das Repository und arbeite in einem Branch.
- Öffne einen Pull Request, der die Issue-Nummer nennt.
Bewertung
Dieses Issue wurde noch nicht bewertet.