summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2007-01-25 18:34:14 (GMT)
committerThomas Heller <theller@ctypes.org>2007-01-25 18:34:14 (GMT)
commit4378215474361ea0f94341275285a856970aa2b8 (patch)
tree8d4c29e3067dee8e029d294e7a892aa572ec3d97 /Misc
parent391e917b1a0670349282e96ac9d5aa3014df4197 (diff)
downloadcpython-4378215474361ea0f94341275285a856970aa2b8.zip
cpython-4378215474361ea0f94341275285a856970aa2b8.tar.gz
cpython-4378215474361ea0f94341275285a856970aa2b8.tar.bz2
Fix for #1643874: When calling SysAllocString, create a PyCObject
which will eventually call SysFreeString to free the BSTR resource.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ad72b08..3fad862 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -123,6 +123,8 @@ Core and builtins
Library
-------
+- Patch #1643874: memory leak in ctypes fixed.
+
- Patch #1627441: close sockets properly in urllib2.
- Bug #494589: make ntpath.expandvars behave according to its docstring.