From: Guido van Rossum Date: Sun, 30 Nov 2003 22:10:54 +0000 (+0000) Subject: Add news item for _winreg fix (SF bug 851056). X-Git-Tag: v2.3.3c1~28 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=224fc7917f395e868a3e65706f46d7a7600e0e3f;p=thirdparty%2FPython%2Fcpython.git Add news item for _winreg fix (SF bug 851056). --- diff --git a/Misc/NEWS b/Misc/NEWS index 0b02c9febb71..b205a1547f50 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -262,6 +262,11 @@ Build 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. + - The _ssl extension module was built using openssl-0.9.7b. - The Windows installer includes documentation in HTMLHelp format