Message ID | 1609947331-6849-4-git-send-email-lance.lmwang@gmail.com |
---|---|
State | Accepted |
Commit | bf1cc9a43be5d72d8aea24e927e07c7423d8298c |
Headers | show |
Series | [FFmpeg-devel,1/5] avformat/udp: add memory alloc checks | expand |
Context | Check | Description |
---|---|---|
andriy/x86_make | success | Make finished |
andriy/x86_make_fate | success | Make fate finished |
andriy/PPC64_make | success | Make finished |
andriy/PPC64_make_fate | success | Make fate finished |
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index cafe0e8..7f38db7 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -3032,8 +3032,8 @@ static int hls_init(AVFormatContext *s) r = strftime_expand(vs->fmp4_init_filename, &expanded); if (r < 0) { - av_log(s, AV_LOG_ERROR, "Could not get segment filename with strftime\n"); - return r; + av_log(s, AV_LOG_ERROR, "Could not get segment filename with strftime\n"); + return r; } av_free(vs->fmp4_init_filename); vs->fmp4_init_filename = expanded;