[issue8105] mmap crash on Windows with out of range file descriptor

2010-08-01 Thread Brian Curtin
Brian Curtin added the comment: Fixed in r83407 (py3k), r83409 (release31-maint), and r83410 (release27-maint). -- assignee: -> brian.curtin components: +Extension Modules -Library (Lib) resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___

[issue8105] mmap crash on Windows with out of range file descriptor

2010-08-01 Thread Georg Brandl
Georg Brandl added the comment: What's the status here? Can it be committed? -- nosy: +georg.brandl ___ Python tracker ___ ___ Python

[issue8105] mmap crash on Windows with out of range file descriptor

2010-03-09 Thread Brian Curtin
Brian Curtin added the comment: I should add that I tried the same thing on linux and no crash occured, it properly raised an exception. -- ___ Python tracker ___ __

[issue8105] mmap crash on Windows with out of range file descriptor

2010-03-09 Thread Brian Curtin
Changes by Brian Curtin : Added file: http://bugs.python.org/file16516/mmap_crash.diff ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue8105] mmap crash on Windows with out of range file descriptor

2010-03-09 Thread Brian Curtin
Changes by Brian Curtin : Removed file: http://bugs.python.org/file16515/mmap_crash.diff ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue8105] mmap crash on Windows with out of range file descriptor

2010-03-09 Thread Brian Curtin
New submission from Brian Curtin : Creating an mmap object can crash the interpreter on Windows if a file descriptor is passed in which is outside of the range for _get_osfhandle. I noticed the crash possibility while reviewing the Modules/mmapmodule.c code for work on another issue related to