From e400b95b3205d5b861346f525cf6f423d93d2f04 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Sat, 9 Jun 2012 10:57:14 +0000 Subject: [PATCH] bink: check av_mallocz() return value Signed-off-by: Paul B Mahol --- libavformat/bink.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/bink.c b/libavformat/bink.c index 20cf609cd0..5eb22111f0 100644 --- a/libavformat/bink.c +++ b/libavformat/bink.c @@ -115,6 +115,8 @@ static int read_header(AVFormatContext *s) vst->codec->codec_type = AVMEDIA_TYPE_VIDEO; vst->codec->codec_id = CODEC_ID_BINKVIDEO; vst->codec->extradata = av_mallocz(4 + FF_INPUT_BUFFER_PADDING_SIZE); + if (!vst->codec->extradata) + return AVERROR(ENOMEM); vst->codec->extradata_size = 4; avio_read(pb, vst->codec->extradata, 4); -- 2.11.0