Browse Source

avformat/hlsenc: fix memleak in update_variant_stream_info

Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
tags/n4.3
Steven Liu 5 years ago
parent
commit
d1fe1344ea
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      libavformat/hlsenc.c

+ 6
- 2
libavformat/hlsenc.c View File

@@ -2131,14 +2131,18 @@ static int update_variant_stream_info(AVFormatContext *s) {
hls->var_streams[0].nb_streams = s->nb_streams;
hls->var_streams[0].streams = av_mallocz(sizeof(AVStream *) *
hls->var_streams[0].nb_streams);
if (!hls->var_streams[0].streams)
if (!hls->var_streams[0].streams) {
av_free(hls->var_streams);
return AVERROR(ENOMEM);
}

//by default, the first available ccgroup is mapped to the variant stream
if (hls->nb_ccstreams) {
hls->var_streams[0].ccgroup = av_strdup(hls->cc_streams[0].ccgroup);
if (!hls->var_streams[0].ccgroup)
if (!hls->var_streams[0].ccgroup) {
av_free(hls->var_streams);
return AVERROR(ENOMEM);
}
}

for (i = 0; i < s->nb_streams; i++)


Loading…
Cancel
Save