Commit b1c1e673 authored by Benjamin Peterson's avatar Benjamin Peterson

fix build with older openssl (#25569)

parent 5118f7b9
...@@ -1069,7 +1069,7 @@ _get_crl_dp(X509 *certificate) { ...@@ -1069,7 +1069,7 @@ _get_crl_dp(X509 *certificate) {
done: done:
Py_XDECREF(lst); Py_XDECREF(lst);
#if OPENSSL_VERSION_NUMBER < 0x10001000L #if OPENSSL_VERSION_NUMBER < 0x10001000L
sk_DIST_POINT_free(dsp); sk_DIST_POINT_free(dps);
#endif #endif
return res; return res;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment