From 806fb2540520839812887140fa1d4ba2e60ecc5e Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sat, 14 Nov 2015 00:09:22 -0800 Subject: fix build with older openssl (#25569) --- Modules/_ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v0.12