From a807c68253b02cce8b9fbc87d7857c31d531a1ee Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Sun, 13 Oct 2013 10:30:59 +0000 Subject: avformat: use ff_alloc_extradata() Signed-off-by: Paul B Mahol --- libavformat/apetag.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'libavformat/apetag.c') diff --git a/libavformat/apetag.c b/libavformat/apetag.c index ab93736718..a376a0bc4a 100644 --- a/libavformat/apetag.c +++ b/libavformat/apetag.c @@ -88,14 +88,13 @@ static int ape_tag_read_field(AVFormatContext *s) st->attached_pic.stream_index = st->index; st->attached_pic.flags |= AV_PKT_FLAG_KEY; } else { - st->codec->extradata = av_malloc(size + FF_INPUT_BUFFER_PADDING_SIZE); - if (!st->codec->extradata) + if (ff_alloc_extradata(st->codec, size)) return AVERROR(ENOMEM); if (avio_read(pb, st->codec->extradata, size) != size) { av_freep(&st->codec->extradata); + st->codec->extradata_size = 0; return AVERROR(EIO); } - st->codec->extradata_size = size; st->codec->codec_type = AVMEDIA_TYPE_ATTACHMENT; } } else { -- cgit v1.2.3