mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Add news item for _winreg fix (SF bug 851056).
This commit is contained in:
parent
a6a38ad55c
commit
fd25acacaf
1 changed files with 5 additions and 0 deletions
|
|
@ -270,6 +270,11 @@ Tests
|
|||
Windows
|
||||
-------
|
||||
|
||||
- The _winreg module could segfault when reading very large registry
|
||||
values, due to unchecked alloca() calls (SF bug 851056). The fix is
|
||||
uses either PyMem_Malloc(n) or PyString_FromStringAndSize(NULL, n),
|
||||
as appropriate, followed by a size check.
|
||||
|
||||
- file.truncate() could misbehave if the file was open for update
|
||||
(modes r+, rb+, w+, wb+), and the most recent file operation before
|
||||
the truncate() call was an input operation. SF bug 801631.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue