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 b22b65f2f8 avformat/hlsenc: Return error upon error, fix shadowing
b22b65f2f8 is described below
commit b22b65f2f87a7be533ae3691589180e3fb8bd416
Author: Andreas Rheinhardt <[email protected]>
AuthorDate: Sat Feb 21 13:17:26 2026 +0100
Commit: Andreas Rheinhardt <[email protected]>
CommitDate: Sun Feb 22 00:23:00 2026 +0100
avformat/hlsenc: Return error upon error, fix shadowing
Introduced in 65fc0db581c4ee2a891b7b72f6056357ceb3b0bd.
Reviewed-by: Marvin Scholz <[email protected]>
Reviewed-by: Michael Niedermayer <[email protected]>
Signed-off-by: Andreas Rheinhardt <[email protected]>
---
libavformat/hlsenc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index ee64a5a275..dcf5da9bb8 100644
--- a/libavformat/hlsenc.c
+++ b/libavformat/hlsenc.c
@@ -1243,7 +1243,7 @@ static int parse_playlist(AVFormatContext *s, const char
*url, VariantStream *vs
int vtt_index = extract_segment_number(line);
const char *vtt_basename = av_basename(vs->vtt_basename);
char *vtt_file = NULL;
- int ret = replace_int_data_in_filename(&vtt_file,
vtt_basename, 'd', vtt_index);
+ ret = replace_int_data_in_filename(&vtt_file,
vtt_basename, 'd', vtt_index);
if (ret < 0 || !vtt_file) {
ret = AVERROR(ENOMEM);
goto fail;
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]