You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-04 22:03:09 +02:00
avformat/tls_openssl: load default verify locations
When no explicit CAs file is set, load the default locations, else there is no way for verification to succeed. This matches the behavior of other TLS backends.
This commit is contained in:
@ -740,6 +740,12 @@ static av_cold int openssl_init_ca_key_cert(URLContext *h)
|
||||
if (c->ca_file) {
|
||||
if (!SSL_CTX_load_verify_locations(p->ctx, c->ca_file, NULL))
|
||||
av_log(h, AV_LOG_ERROR, "SSL_CTX_load_verify_locations %s\n", openssl_get_error(p));
|
||||
} else {
|
||||
if (!SSL_CTX_set_default_verify_paths(p->ctx)) {
|
||||
// Only log the failure but do not error out, as this is not fatal
|
||||
av_log(h, AV_LOG_WARNING, "Failure setting default verify locations: %s\n",
|
||||
openssl_get_error(p));
|
||||
}
|
||||
}
|
||||
|
||||
if (c->cert_file) {
|
||||
|
Reference in New Issue
Block a user