]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-21872: fix lzma library decompresses data incompletely (GH-14048)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 12 Sep 2019 14:41:11 +0000 (07:41 -0700)
committerGitHub <noreply@github.com>
Thu, 12 Sep 2019 14:41:11 +0000 (07:41 -0700)
commit824407f76e211a2a19c94d5cb1f39fc422ab62ee
tree3e030104760578a5b37e69be8cf7c534035ab079
parent8976359c598f56825648f4e5397b78c5d14ea13c
bpo-21872: fix lzma library decompresses data incompletely (GH-14048)

* 1. add test case with wrong behavior
* 2. fix bug when max_length == -1
* 3. allow b"" as valid input data for decompress_buf()
* 4. when max_length >= 0, let needs_input mechanism works
* add more asserts to test case
(cherry picked from commit 4ffd05d7ec47cfd0d7fc95dce851633be9663255)

Co-authored-by: animalize <animalize@users.noreply.github.com>
Lib/test/test_lzma.py
Misc/NEWS.d/next/Library/2019-06-12-08-56-22.bpo-21872.V9QGGN.rst [new file with mode: 0644]
Modules/_lzmamodule.c