This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch release/4.4 in repository ffmpeg.
commit 0832b9efede300a1b7c894c3227073f1d7187f66 Author: Marius Momeu <[email protected]> AuthorDate: Sat May 2 12:28:30 2026 +0200 Commit: Michael Niedermayer <[email protected]> CommitDate: Tue May 5 19:27:35 2026 +0200 avcodec/ralf: Add the missing return statement after the error log Signed-off-by: Michael Niedermayer <[email protected]> (cherry picked from commit ff3223b5d689015403b8355c11803045a2a7995e) Signed-off-by: Michael Niedermayer <[email protected]> --- libavcodec/ralf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/ralf.c b/libavcodec/ralf.c index dc012d71b1..862d6de5e5 100644 --- a/libavcodec/ralf.c +++ b/libavcodec/ralf.c @@ -157,6 +157,7 @@ static av_cold int decode_init(AVCodecContext *avctx) if (ctx->max_frame_size > (1 << 20) || !ctx->max_frame_size) { av_log(avctx, AV_LOG_ERROR, "invalid frame size %d\n", ctx->max_frame_size); + return AVERROR_INVALIDDATA; } ctx->max_frame_size = FFMAX(ctx->max_frame_size, avctx->sample_rate); _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
