[FFmpeg-devel] [PATCH] avformat/hlsenc: remove the cannot reach result

Steven Liu lq at chinaffmpeg.org
Tue Nov 13 04:42:27 EET 2018


fix CID: 1441166
because the logic have checked the vtt_dirname before

Signed-off-by: Steven Liu <lq at chinaffmpeg.org>
---
 libavformat/hlsenc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index e0048aa9d8..8a687dc1bb 100644
--- a/libavformat/hlsenc.c
+++ b/libavformat/hlsenc.c
@@ -507,7 +507,7 @@ static int hls_delete_old_segments(AVFormatContext *s, HLSContext *hls,
             }
             p = (char *)av_basename(vtt_dirname);
             *p = '\0';
-            sub_path_size = strlen(segment->sub_filename) + 1 + (vtt_dirname ? strlen(vtt_dirname) : 0);
+            sub_path_size = strlen(segment->sub_filename) + 1 + strlen(vtt_dirname);
             sub_path = av_malloc(sub_path_size);
             if (!sub_path) {
                 ret = AVERROR(ENOMEM);
-- 
2.15.2 (Apple Git-101.1)





More information about the ffmpeg-devel mailing list