The branch, master has been updated
       via  f1d5114103a8164869a279326043645e7bacdc86 (commit)
      from  61b6877637041a1f817ad9811c839b0feae2b8af (commit)


- Log -----------------------------------------------------------------
commit f1d5114103a8164869a279326043645e7bacdc86
Author:     Marton Balint <[email protected]>
AuthorDate: Thu Oct 2 00:27:29 2025 +0200
Commit:     Marton Balint <[email protected]>
CommitDate: Thu Oct 2 18:41:47 2025 +0200

    avformat/tls_openssl: do not cleanup tls after a successful dtls_start()
    
    Regression since 8e11e2cdb82299e7f0b6d8884bf2bc65c1c3f5e8.
    
    Signed-off-by: Marton Balint <[email protected]>

diff --git a/libavformat/tls_openssl.c b/libavformat/tls_openssl.c
index c2adaa38d1..c7d6ff6cf4 100644
--- a/libavformat/tls_openssl.c
+++ b/libavformat/tls_openssl.c
@@ -834,7 +834,7 @@ static int dtls_start(URLContext *h, const char *url, int 
flags, AVDictionary **
 
     av_log(c, AV_LOG_VERBOSE, "Setup ok, MTU=%d\n", c->tls_shared.mtu);
 
-    ret = 0;
+    return 0;
 fail:
     tls_close(h);
     return ret;

-----------------------------------------------------------------------

Summary of changes:
 libavformat/tls_openssl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to