[Python-checkins] python/dist/src/Misc NEWS,1.831.4.97,1.831.4.98
aimacintyre at users.sourceforge.net
aimacintyre at users.sourceforge.net
Sun Apr 4 03:08:23 EDT 2004
Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31097
Modified Files:
Tag: release23-maint
NEWS
Log Message:
Backport to 2.3:
If a file is opened with an explicit buffer size >= 1, repeated
close() calls would attempt to free() the buffer already free()ed on
the first close(). [bug introduced with patch #788249]
Making sure that the buffer is free()ed in file object deallocation is
a belt-n-braces bit of insurance against a memory leak.
Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.831.4.97
retrieving revision 1.831.4.98
diff -C2 -d -r1.831.4.97 -r1.831.4.98
*** NEWS 25 Mar 2004 16:56:14 -0000 1.831.4.97
--- NEWS 4 Apr 2004 07:08:20 -0000 1.831.4.98
***************
*** 36,39 ****
--- 36,43 ----
fail caused intermittent errors and odd behavior.
+ - fixed: if a file is opened with an explicit buffer size >= 1, repeated
+ close() calls would attempt to free() the buffer already free()ed on
+ the first call.
+
Library
-------
More information about the Python-checkins
mailing list