| commit | 665730d2176aabd05ca5741056aef43189b6f754 | [log] [tgz] |
|---|---|---|
| author | Zackery Spytz <zspytz@gmail.com> | Thu Feb 23 06:00:58 2023 -0800 |
| committer | GitHub <noreply@github.com> | Thu Feb 23 06:00:58 2023 -0800 |
| tree | a91cd6c443b91d26f5f404629e265aefec8832c1 | |
| parent | 9bba8035bd99813203cb3b0de218f9cc3bcdaf2f [diff] |
bpo-23224: Fix segfaults and multiple leaks in the lzma and bz2 modules (GH-7822) lzma.LZMADecompressor and bz2.BZ2Decompressor objects caused segfaults when their `__init__()` methods were not called. lzma.LZMADecompressor, lzma.LZMACompressor, bz2.BZ2Compressor, and bz2.BZ2Decompressor objects would leak locks and internal buffers when their `__init__()` methods were called multiple times. https://bugs.python.org/issue23224