diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-11-14 08:09:22 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-11-14 08:09:22 (GMT) |
commit | 806fb2540520839812887140fa1d4ba2e60ecc5e (patch) | |
tree | 00769212b16c8b2a6418d37e650134746da382c6 /Modules | |
parent | 2e4571a456c32af964d48b4bf70a9a53d27d10d6 (diff) | |
download | cpython-806fb2540520839812887140fa1d4ba2e60ecc5e.zip cpython-806fb2540520839812887140fa1d4ba2e60ecc5e.tar.gz cpython-806fb2540520839812887140fa1d4ba2e60ecc5e.tar.bz2 |
fix build with older openssl (#25569)
Diffstat (limited to 'Modules')
-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 63a0f9c..23e9be7 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -1081,7 +1081,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; } |