avformat/hlsenc: Check the return code of avformat_write_header()
Fixes: segfault
Fixes: Ticket5067
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit c62d1780ff
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -548,8 +548,11 @@ static int hls_start(AVFormatContext *s)
|
|||||||
if (oc->oformat->priv_class && oc->priv_data)
|
if (oc->oformat->priv_class && oc->priv_data)
|
||||||
av_opt_set(oc->priv_data, "mpegts_flags", "resend_headers", 0);
|
av_opt_set(oc->priv_data, "mpegts_flags", "resend_headers", 0);
|
||||||
|
|
||||||
if (c->vtt_basename)
|
if (c->vtt_basename) {
|
||||||
avformat_write_header(vtt_oc,NULL);
|
err = avformat_write_header(vtt_oc,NULL);
|
||||||
|
if (err < 0)
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user