Commit 30ba28fe authored by Vignesh Venkatasubramanian's avatar Vignesh Venkatasubramanian Committed by Michael Niedermayer

webmdashenc: Fix potential memory leak

Fix potential memory leak in WebM DASH Muxer. This fixes coverity
scan CID 1295088.
Signed-off-by: 's avatarVignesh Venkatasubramanian <vigneshv@google.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent ba631b79
...@@ -398,8 +398,8 @@ static int write_adaptation_set(AVFormatContext *s, int as_index) ...@@ -398,8 +398,8 @@ static int write_adaptation_set(AVFormatContext *s, int as_index)
ret = write_representation(s, s->streams[as->streams[i]], ret = write_representation(s, s->streams[as->streams[i]],
representation_id, !width_in_as, representation_id, !width_in_as,
!height_in_as, !sample_rate_in_as); !height_in_as, !sample_rate_in_as);
if (ret) return ret;
av_free(representation_id); av_free(representation_id);
if (ret) return ret;
} }
avio_printf(s->pb, "</AdaptationSet>\n"); avio_printf(s->pb, "</AdaptationSet>\n");
return 0; return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment