Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-06-09 14:57:14 +0400
committerPaul B Mahol <onemda@gmail.com>2012-06-09 14:57:14 +0400
commite400b95b3205d5b861346f525cf6f423d93d2f04 (patch)
tree4f884305cb77f3e4efacdf610280d3e16b718966 /libavformat/bink.c
parentc2dd01c16fb13aed5f4896bbe14ea65db5d66862 (diff)
bink: check av_mallocz() return value
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavformat/bink.c')
-rw-r--r--libavformat/bink.c2
1 files changed, 2 insertions, 0 deletions
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);