python / python/cpython

`zlib.Decompress.flush()` silently returns corrupted output instead of raising `zlib.error`

オープン
#156,173 コメント 0 件 リアクション 0 件 担当者 1 名 GitHub で見る

@StanFromIreland がすでに取り組んでいます。

2026年8月21日 から。

extension-modules type-bug
主要言語
Python
スター
77.2k
フォーク
35.9k
PR マージ指標
PR 指標を取得中

説明

Bug report

Bug description:

zlib.Decompress.flush() discards errors returned by inflate(), so corrupt data comes back truncated and garbled with no exception, while decompress() reports this correctly.

>>> import zlib
>>> data = zlib.compress(b'abcdefgh' * 200, 9)
>>> corrupt = data[:15] + bytes(60)  # Corrupt the valid stream
>>> d = zlib.decompressobj()
>>> d.decompress(corrupt)  # decompress errors correctly
Traceback (most recent call last):
  File "<python-input-4>", line 1, in <module>
    d.decompress(corrupt)
    ~~~~~~~~~~~~^^^^^^^^^
zlib.error: Error -3 while decompressing data: incorrect data check
>>> d = zlib.decompressobj()
>>> d.decompress(corrupt, 1)  # leaving rest uncomsumed
b'a'
>>> d.flush()  # no flush, corrupted output
b'bcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdeP'
CPython versions tested on:

CPython main branch

Operating systems tested on:

No response

Linked PRs
  • gh-156176
  • gh-156270
  • gh-156271
  • gh-156272

コントリビューションガイド

コントリビューションガイドを開く

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。