diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2004-12-28 20:12:31 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2004-12-28 20:12:31 (GMT) |
commit | 3baa81103377bab28e42e194385231ea85dd3968 (patch) | |
tree | f5c5ba56b0a61d9e329ead1ee9572c06c3bc71b1 /Lib/test | |
parent | 938118a0d89faf3fe2f621a4817ed501ff41aef9 (diff) | |
download | cpython-3baa81103377bab28e42e194385231ea85dd3968.zip cpython-3baa81103377bab28e42e194385231ea85dd3968.tar.gz cpython-3baa81103377bab28e42e194385231ea85dd3968.tar.bz2 |
[Bug #1083110] calling .flush() on decompress objects causes a segfault due to an uninitialized pointer: fixes the problem and adds a test case
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_zlib.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Lib/test/test_zlib.py b/Lib/test/test_zlib.py index 8683879..b4bf77e 100644 --- a/Lib/test/test_zlib.py +++ b/Lib/test/test_zlib.py @@ -290,6 +290,16 @@ class CompressObjectTestCase(unittest.TestCase): # if decompressed data is different from the input data, choke. self.assertEqual(expanded, data, "17K random source doesn't match") + def test_empty_flush(self): + # Test that calling .flush() on unused objects works. + # (Bug #1083110 -- calling .flush() on decompress objects + # caused a core dump.) + + co = zlib.compressobj(zlib.Z_BEST_COMPRESSION) + self.failUnless(co.flush()) # Returns a zlib header + dco = zlib.decompressobj() + self.assertEqual(dco.flush(), "") # Returns nothing + def genblock(seed, length, step=1024, generator=random): """length-byte stream of random data from a seed (in step-byte blocks).""" |