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 0834dbed1c avcodec/bsf/smpte436m_to_eia608: properly frees stuff on
errors in ff_smpte436m_to_eia608_filter()
0834dbed1c is described below
commit 0834dbed1c5601d8b92c79ff7ee442752a9f6135
Author: Michael Niedermayer <[email protected]>
AuthorDate: Fri May 8 03:44:54 2026 +0200
Commit: michaelni <[email protected]>
CommitDate: Thu May 28 22:24:58 2026 +0000
avcodec/bsf/smpte436m_to_eia608: properly frees stuff on errors in
ff_smpte436m_to_eia608_filter()
Fixes: memleaks
Fixes:
501913473/clusterfuzz-testcase-minimized-ffmpeg_BSF_SMPTE436M_TO_EIA608_fuzzer-5607133705207808
Found-by: continuous fuzzing process
https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
---
libavcodec/bsf/smpte436m_to_eia608.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/bsf/smpte436m_to_eia608.c
b/libavcodec/bsf/smpte436m_to_eia608.c
index 529ae88794..268108c9a8 100644
--- a/libavcodec/bsf/smpte436m_to_eia608.c
+++ b/libavcodec/bsf/smpte436m_to_eia608.c
@@ -73,7 +73,7 @@ static int ff_smpte436m_to_eia608_filter(AVBSFContext *ctx,
AVPacket *out)
return 0;
}
if (ret != AVERROR_EOF)
- return ret;
+ goto fail;
ret = AVERROR(EAGAIN);
fail:
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]