From: Benjamin Peterson Date: Sat, 14 Nov 2015 08:09:22 +0000 (-0800) Subject: fix build with older openssl (#25569) X-Git-Tag: v2.7.11rc1~18 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b1c1e673cbbd67f70714d7c65d4a9f0f85c53d0f;p=python fix build with older openssl (#25569) --- diff --git a/Modules/_ssl.c b/Modules/_ssl.c index 398a43aaf8..c9c556e832 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -1069,7 +1069,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; }