summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-11-12 06:07:38 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-11-12 06:07:38 (GMT)
commiteda06c8f5e7d7ed5ff79c2c5296253f8f14b7f28 (patch)
tree5b7bf4b5c2dd565df474ab604d3e62a6bb2aef8c /Misc
parent71a0b43854164b6ada0026d90f241c987b54d019 (diff)
downloadcpython-eda06c8f5e7d7ed5ff79c2c5296253f8f14b7f28.zip
cpython-eda06c8f5e7d7ed5ff79c2c5296253f8f14b7f28.tar.gz
cpython-eda06c8f5e7d7ed5ff79c2c5296253f8f14b7f28.tar.bz2
fix memory leak in _get_crl_dp (closes #25569)
Patch started by Stéphane Wirtel.
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 6a61d72..cf81afe 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -107,6 +107,8 @@ Library
at the end if the FileInput was opened with binary mode.
Patch by Ryosuke Ito.
+- Issue #25569: Fix memory leak in SSLSocket.getpeercert().
+
- Issue #21827: Fixed textwrap.dedent() for the case when largest common
whitespace is a substring of smallest leading whitespace.
Based on patch by Robert Li.