From: Benjamin Peterson Date: Sat, 14 Nov 2015 08:09:22 +0000 (-0800) Subject: fix build with older openssl (#25569) X-Git-Tag: v3.5.1rc1~43^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=806fb2540520839812887140fa1d4ba2e60ecc5e;p=thirdparty%2FPython%2Fcpython.git fix build with older openssl (#25569) --- diff --git a/Modules/_ssl.c b/Modules/_ssl.c index 63a0f9ca43b0..23e9be767cd1 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; }