summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMeador Inge <meadori@gmail.com>2016-05-01 03:17:22 (GMT)
committerMeador Inge <meadori@gmail.com>2016-05-01 03:17:22 (GMT)
commitf1e2671fdf88fce8a367ee63aba4a02352bd94d6 (patch)
treec76763c8378ea4c99ef1f801046b5ceb8603c455 /Misc/NEWS
parent51b697b7f36e26c73136684f95e5d407fc2ed474 (diff)
parent8988ebf2a7a89620781feca39074f91469e7baf2 (diff)
downloadcpython-f1e2671fdf88fce8a367ee63aba4a02352bd94d6.zip
cpython-f1e2671fdf88fce8a367ee63aba4a02352bd94d6.tar.gz
cpython-f1e2671fdf88fce8a367ee63aba4a02352bd94d6.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/NEWS')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d6c30db..0115a0e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -256,6 +256,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