[Python-checkins] python/dist/src/Misc NEWS, 1.1193.2.11, 1.1193.2.12

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Tue Dec 28 21:12:48 CET 2004


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27568/Misc

Modified Files:
      Tag: release24-maint
	NEWS 
Log Message:
[Bug #1083110] calling .flush() on decompress objects causes a segfault due to an uninitialized pointer: fixes the problem and adds a test case

Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.1193.2.11
retrieving revision 1.1193.2.12
diff -u -d -r1.1193.2.11 -r1.1193.2.12
--- NEWS	22 Dec 2004 16:59:16 -0000	1.1193.2.11
+++ NEWS	28 Dec 2004 20:12:30 -0000	1.1193.2.12
@@ -42,6 +42,9 @@
   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
 -----



More information about the Python-checkins mailing list