summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2004-12-28 20:10:48 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2004-12-28 20:10:48 (GMT)
commit3b585b30c04489f869098e5769105c7319d211c1 (patch)
tree1f668245d7b27349054c38a8d052841f8df98b37 /Misc
parent078824e4f67a770d8a92d547e6a52d45843f900c (diff)
downloadcpython-3b585b30c04489f869098e5769105c7319d211c1.zip
cpython-3b585b30c04489f869098e5769105c7319d211c1.tar.gz
cpython-3b585b30c04489f869098e5769105c7319d211c1.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 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index dd34055..af04ecf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -64,6 +64,9 @@ Library
once when a size argument is given. This prevents a buffer overflow in the
tokenizer with very long source lines.
+- Bug #1083110: ``zlib.decompress.flush()`` would segfault if called immediately
+ after creating the object, without any intervening ``.decompress()`` calls.
+
Build
-----