summaryrefslogtreecommitdiff
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2008-07-15 19:46:52 +0000
committerThomas Heller <theller@ctypes.org>2008-07-15 19:46:52 +0000
commit162f31e710e1f66fd4df671e907bd6b7aabda5b3 (patch)
tree76a45ffb4eafda9aa37be71845f05a977be8c546 /Misc/NEWS
parent7a354333600bc125e32a8d1ddd15dd1a8165514c (diff)
downloadcpython-162f31e710e1f66fd4df671e907bd6b7aabda5b3.tar.gz
Merged revisions 64976-64977 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r64976 | thomas.heller | 2008-07-15 21:39:38 +0200 (Tue, 15 Jul 2008) | 3 lines Issue #3313: Contrary to the man page, a failed dlopen() call does not always set a dlerror() message. ........ r64977 | thomas.heller | 2008-07-15 21:44:25 +0200 (Tue, 15 Jul 2008) | 2 lines Add Victor Stinner, he provided the patch for issue #3313. ........
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 010c06f4e6..3272f00b55 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,9 @@ Core and Builtins
Library
-------
+- Issue #3313: Fixed a crash when a failed dlopen() call does not set
+ a valid dlerror() message.
+
- Issue #3258: Fixed a crash when a ctypes POINTER type to an
incomplete structure was created.