commit | 2849cc34a8db93d448a62d69c462402347b50dcb | [log] [tgz] |
---|---|---|
author | Olivier Vielpeau <olivielpeau@users.noreply.github.com> | Fri Apr 14 21:06:07 2017 -0400 |
committer | Mariatta <Mariatta@users.noreply.github.com> | Fri Apr 14 18:06:07 2017 -0700 |
tree | d01e839920c3586df77c96dcd9c4ee362bd980b7 | |
parent | 0dc5c3169dcd4853612d11ed8c92b12fa210c07f [diff] |
bpo-29738: Fix memory leak in _get_crl_dp (GH-526) * Remove conditional on free of `dps`, since `dps` is now allocated for all versions of OpenSSL * Remove call to `x509_check_ca` since it was only used to cache the `crldp` field of the certificate CRL_DIST_POINTS_free is available in all supported versions of OpenSSL (recent 0.9.8+) and LibreSSL.