Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 806fb25

Browse files
committed
fix build with older openssl (#25569)
1 parent 2e4571a commit 806fb25

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/_ssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1081,7 +1081,7 @@ _get_crl_dp(X509 *certificate) {
10811081
done:
10821082
Py_XDECREF(lst);
10831083
#if OPENSSL_VERSION_NUMBER < 0x10001000L
1084-
sk_DIST_POINT_free(dsp);
1084+
sk_DIST_POINT_free(dps);
10851085
#endif
10861086
return res;
10871087
}

0 commit comments

Comments
 (0)