summaryrefslogtreecommitdiff
path: root/libavformat/rl2.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/rl2.c')
-rw-r--r--libavformat/rl2.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libavformat/rl2.c b/libavformat/rl2.c
index fb7409eaa6..ff4006497f 100644
--- a/libavformat/rl2.c
+++ b/libavformat/rl2.c
@@ -125,9 +125,7 @@ static av_cold int rl2_read_header(AVFormatContext *s)
if(signature == RLV3_TAG && back_size > 0)
st->codec->extradata_size += back_size;
- st->codec->extradata = av_mallocz(st->codec->extradata_size +
- FF_INPUT_BUFFER_PADDING_SIZE);
- if(!st->codec->extradata)
+ if(ff_alloc_extradata(st->codec, st->codec->extradata_size))
return AVERROR(ENOMEM);
if(avio_read(pb,st->codec->extradata,st->codec->extradata_size) !=