This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

The following commit(s) were added to refs/heads/master by this push:
     new 1499c4ac6d avformat/tls_openssl: Add a missing <string.h> include
1499c4ac6d is described below

commit 1499c4ac6dcec7fbd9e189d243b386db157b0a13
Author:     Martin Storsjö <[email protected]>
AuthorDate: Thu Jun 25 14:08:03 2026 +0300
Commit:     Martin Storsjö <[email protected]>
CommitDate: Thu Jun 25 15:34:04 2026 +0300

    avformat/tls_openssl: Add a missing <string.h> include
    
    This is needed when building with OpenSSL enabled on macOS after
    c32a719cb27a7c9b81501f943a4ed9b64c8fc378.
    
    The tls_openssl.c contains a number of explicit calls to strlen(),
    which require including <string.h>.
---
 libavformat/tls_openssl.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavformat/tls_openssl.c b/libavformat/tls_openssl.c
index 55e6e6b628..5d3be96fbb 100644
--- a/libavformat/tls_openssl.c
+++ b/libavformat/tls_openssl.c
@@ -37,6 +37,7 @@
 #if HAVE_SYS_TIME_H
 #include <sys/time.h>
 #endif
+#include <string.h>
 
 #define DTLS_HANDSHAKE_TIMEOUT_US 30000000
 /**

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

Reply via email to