diff mbox series

[FFmpeg-devel,2/6] lavf/tls_mbedtls: add missing call to psa_crypto_init

Message ID DU0PR03MB956721102957974C85DF0250ECEE2@DU0PR03MB9567.eurprd03.prod.outlook.com
State New
Headers show
Series [FFmpeg-devel,1/6] lavf/tls_mbedtls: handle more error codes for human-readable message | expand

Checks

Context Check Description
yinshiyou/configure_loongarch64 warning Failed to apply patch
andriy/configure_x86 warning Failed to apply patch

Commit Message

sfan5 May 17, 2024, 8:34 a.m. UTC
This is mandatory depending on configuration or at least with mbedTLS 3.6.0.

Signed-off-by: sfan5 <sfan5@live.de>
---
  libavformat/tls_mbedtls.c | 10 ++++++++++
  1 file changed, 10 insertions(+)

int flags, AVDictionary **op
      if ((ret = ff_tls_open_underlying(shr, h, uri, options)) < 0)
          goto fail;
  +#ifdef MBEDTLS_PSA_CRYPTO_C
+    if ((ret = psa_crypto_init()) != PSA_SUCCESS) {
+        av_log(h, AV_LOG_ERROR, "psa_crypto_init returned %d\n", ret);
+        goto fail;
+    }
+#endif
+
      mbedtls_ssl_init(&tls_ctx->ssl_context);
      mbedtls_ssl_config_init(&tls_ctx->ssl_config);
      mbedtls_entropy_init(&tls_ctx->entropy_context);
diff mbox series

Patch

diff --git a/libavformat/tls_mbedtls.c b/libavformat/tls_mbedtls.c
index fd6ba0b1f5..24c3afd94c 100644
--- a/libavformat/tls_mbedtls.c
+++ b/libavformat/tls_mbedtls.c
@@ -26,6 +26,9 @@ 
  #include <mbedtls/platform.h>
  #include <mbedtls/ssl.h>
  #include <mbedtls/x509_crt.h>
+#ifdef MBEDTLS_PSA_CRYPTO_C
+#include <psa/crypto.h>
+#endif
   #include "avformat.h"
  #include "internal.h"
@@ -184,6 +187,13 @@  static int tls_open(URLContext *h, const char *uri,