mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avformat/hlsenc: remove the cannot reach result
fix CID: 1441166
because the logic have checked the vtt_dirname before
Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
This commit is contained in:
parent
370b8bd847
commit
f9ea493147
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user