mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
webmdashenc: Fix potential memory leak
Fix potential memory leak in WebM DASH Muxer. This fixes coverity scan CID 1295088. Signed-off-by: Vignesh Venkatasubramanian <vigneshv@google.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
ba631b7914
commit
30ba28fe8e
@ -398,8 +398,8 @@ static int write_adaptation_set(AVFormatContext *s, int as_index)
|
||||
ret = write_representation(s, s->streams[as->streams[i]],
|
||||
representation_id, !width_in_as,
|
||||
!height_in_as, !sample_rate_in_as);
|
||||
if (ret) return ret;
|
||||
av_free(representation_id);
|
||||
if (ret) return ret;
|
||||
}
|
||||
avio_printf(s->pb, "</AdaptationSet>\n");
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user