Commit 806fb254 authored by Benjamin Peterson's avatar Benjamin Peterson

fix build with older openssl (#25569)

parent 2e4571a4
...@@ -1081,7 +1081,7 @@ _get_crl_dp(X509 *certificate) { ...@@ -1081,7 +1081,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