Browse Source

tta: check for extradata allocation failure in tta demuxer

tags/n0.9
Justin Ruggles 14 years ago
parent
commit
f540ca22c5
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      libavformat/tta.c

+ 4
- 0
libavformat/tta.c View File

@@ -107,6 +107,10 @@ static int tta_read_header(AVFormatContext *s, AVFormatParameters *ap)
return -1;
}
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_read(s->pb, st->codec->extradata, st->codec->extradata_size);



Loading…
Cancel
Save