[Python-checkins] python/dist/src/Misc NEWS,1.609,1.610

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Fri, 10 Jan 2003 12:57:58 -0800


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1:/tmp/cvs-serv23550/Misc

Modified Files:
	NEWS 
Log Message:
SF #665913, Fix mmap module core dump with unix

Closing an mmap'ed file (calling munmap) twice on Solaris caused a core dump.



Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.609
retrieving revision 1.610
diff -C2 -d -r1.609 -r1.610
*** NEWS	8 Jan 2003 20:39:54 -0000	1.609
--- NEWS	10 Jan 2003 20:57:54 -0000	1.610
***************
*** 70,73 ****
--- 70,76 ----
    datetimes constructed from them are equal.
  
+ - Fix a crash on Solaris that occurred when calling close() on
+   an mmap'ed file which was already closed.  (SF patch #665913)
+ 
  Library
  -------