mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/oggenc: check for stream private data in ogg_free()
Fixes a NULL pointer derefence when ogg_init() returns a failure and
a stream's private data was not yet allocated.
This is a regression since 3c5a53cdfa
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
067e42b851
commit
505cb8e390
|
@ -743,6 +743,8 @@ static void ogg_free(AVFormatContext *s)
|
|||
for (i = 0; i < s->nb_streams; i++) {
|
||||
AVStream *st = s->streams[i];
|
||||
OGGStreamContext *oggstream = st->priv_data;
|
||||
if (!oggstream)
|
||||
continue;
|
||||
if (st->codecpar->codec_id == AV_CODEC_ID_FLAC ||
|
||||
st->codecpar->codec_id == AV_CODEC_ID_SPEEX ||
|
||||
st->codecpar->codec_id == AV_CODEC_ID_OPUS ||
|
||||
|
|
Loading…
Reference in New Issue