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 c62d1780fff8a1997dd1707bbc557efc8fe41e3c) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
07b43fb69a
commit
d07f658201
@ -548,8 +548,11 @@ static int hls_start(AVFormatContext *s)
|
||||
if (oc->oformat->priv_class && oc->priv_data)
|
||||
av_opt_set(oc->priv_data, "mpegts_flags", "resend_headers", 0);
|
||||
|
||||
if (c->vtt_basename)
|
||||
avformat_write_header(vtt_oc,NULL);
|
||||
if (c->vtt_basename) {
|
||||
err = avformat_write_header(vtt_oc,NULL);
|
||||
if (err < 0)
|
||||
return err;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user