diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-11-14 00:11:19 -0800 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-11-14 00:11:19 -0800 |
commit | 449e7c1b06c6d6cafd515d87e91e12e1407e59c9 (patch) | |
tree | 94add6a54fbf2ed37236cebf1dce574bd726b0d2 | |
parent | fad4b600744cde16e952a49af95ad6e520d05ca2 (diff) | |
parent | 2463001a15f0f1dab1b82e71f3d37b1bc7bc701f (diff) | |
download | cpython-git-449e7c1b06c6d6cafd515d87e91e12e1407e59c9.tar.gz |
merge 3.5 (#25569)
-rw-r--r-- | Modules/_ssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_ssl.c b/Modules/_ssl.c index b04a63737f..784040d651 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -1121,7 +1121,7 @@ _get_crl_dp(X509 *certificate) { done: Py_XDECREF(lst); #if OPENSSL_VERSION_NUMBER < 0x10001000L - sk_DIST_POINT_free(dsp); + sk_DIST_POINT_free(dps); #endif return res; } |