summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMeador Inge <meadori@gmail.com>2016-05-01 02:56:59 (GMT)
committerMeador Inge <meadori@gmail.com>2016-05-01 02:56:59 (GMT)
commit8988ebf2a7a89620781feca39074f91469e7baf2 (patch)
tree29d98d34985f0cac8c761a7891cf04286c43d7a6 /Misc
parentaa27982ffca6ebfaad0a776e93e98a30e95b8b88 (diff)
downloadcpython-8988ebf2a7a89620781feca39074f91469e7baf2.zip
cpython-8988ebf2a7a89620781feca39074f91469e7baf2.tar.gz
cpython-8988ebf2a7a89620781feca39074f91469e7baf2.tar.bz2
Issue #24114: Fix an uninitialized variable in `ctypes.util`.
The bug only occurs on SunOS when the ctypes implementation searches for the `crle` program. Patch by Xiang Zhang. Tested on SunOS by Kees Bos.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 67c2a17..89403b0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -107,6 +107,12 @@ Core and Builtins
Library
-------
+- Issue #24114: Fix an uninitialized variable in `ctypes.util`.
+
+ The bug only occurs on SunOS when the ctypes implementation searches
+ for the `crle` program. Patch by Xiang Zhang. Tested on SunOS by
+ Kees Bos.
+
- Issue #26864: In urllib.request, change the proxy bypass host checking
against no_proxy to be case-insensitive, and to not match unrelated host
names that happen to have a bypassed hostname as a suffix. Patch by Xiang