https://hg.python.org/cpython/rev/f13a75544b6f changeset: 99128:f13a75544b6f branch: 3.4 parent: 99122:c3282d91055f user: Benjamin Peterson <benjamin at python.org> date: Sat Nov 14 00:09:22 2015 -0800 summary: fix build with older openssl (#25569) files: Modules/_ssl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Modules/_ssl.c b/Modules/_ssl.c --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -1081,7 +1081,7 @@ done: Py_XDECREF(lst); #if OPENSSL_VERSION_NUMBER < 0x10001000L - sk_DIST_POINT_free(dsp); + sk_DIST_POINT_free(dps); #endif return res; } -- Repository URL: https://hg.python.org/cpython