You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
tta: check for extradata allocation failure in tta demuxer
This commit is contained in:
@@ -107,6 +107,10 @@ static int tta_read_header(AVFormatContext *s, AVFormatParameters *ap)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
st->codec->extradata = av_mallocz(st->codec->extradata_size+FF_INPUT_BUFFER_PADDING_SIZE);
|
st->codec->extradata = av_mallocz(st->codec->extradata_size+FF_INPUT_BUFFER_PADDING_SIZE);
|
||||||
|
if (!st->codec->extradata) {
|
||||||
|
st->codec->extradata_size = 0;
|
||||||
|
return AVERROR(ENOMEM);
|
||||||
|
}
|
||||||
avio_seek(s->pb, start_offset, SEEK_SET);
|
avio_seek(s->pb, start_offset, SEEK_SET);
|
||||||
avio_read(s->pb, st->codec->extradata, st->codec->extradata_size);
|
avio_read(s->pb, st->codec->extradata, st->codec->extradata_size);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user