This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 3f596e2035786bd407cc50c60edefa33a3fce3c5 Author: Kacper Michajłow <[email protected]> AuthorDate: Tue Aug 11 16:25:43 2026 +0200 Commit: Kacper Michajłow <[email protected]> CommitDate: Wed Aug 12 17:21:06 2026 +0200 avformat/tls_securetransport: add fall-through annotation Signed-off-by: Kacper Michajłow <[email protected]> --- libavformat/tls_securetransport.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/tls_securetransport.c b/libavformat/tls_securetransport.c index f52fc97db2..01965439e9 100644 --- a/libavformat/tls_securetransport.c +++ b/libavformat/tls_securetransport.c @@ -29,6 +29,7 @@ #include "url.h" #include "tls.h" #include "libavcodec/internal.h" +#include "libavutil/attributes.h" #include "libavutil/avstring.h" #include "libavutil/mem.h" #include "libavutil/opt.h" @@ -355,6 +356,7 @@ static int map_ssl_error(OSStatus status, size_t processed) case errSSLWouldBlock: if (processed > 0) return processed; + av_fallthrough; default: return (int)status; } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
