lavf/dashenc: remove unneeded call to dash_free

This commit is contained in:
Rodger Combs 2018-03-14 01:24:39 -05:00 committed by Karthick Jeyapal
parent 99230b7ef8
commit 08e0f45cc8

View File

@ -1033,10 +1033,8 @@ static int dash_write_header(AVFormatContext *s)
int i, ret;
for (i = 0; i < s->nb_streams; i++) {
OutputStream *os = &c->streams[i];
if ((ret = avformat_write_header(os->ctx, NULL)) < 0) {
dash_free(s);
if ((ret = avformat_write_header(os->ctx, NULL)) < 0)
return ret;
}
}
ret = write_manifest(s, 0);
if (!ret)