[FFmpeg-cvslog] vc1test: Check malloc call
Nidhi Makhijani
git at videolan.org
Sun Jul 6 19:55:26 CEST 2014
ffmpeg | branch: master | Nidhi Makhijani <nidhimj22 at gmail.com> | Sun Jul 6 21:10:52 2014 +0530| [02a7a5e330ec4373a761f63c292220a1de13b968] | committer: Diego Biurrun
vc1test: Check malloc call
Signed-off-by: Diego Biurrun <diego at biurrun.de>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=02a7a5e330ec4373a761f63c292220a1de13b968
---
libavformat/vc1test.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/libavformat/vc1test.c b/libavformat/vc1test.c
index 8fabf7d..f302c2b 100644
--- a/libavformat/vc1test.c
+++ b/libavformat/vc1test.c
@@ -62,6 +62,8 @@ static int vc1t_read_header(AVFormatContext *s)
st->codec->codec_id = AV_CODEC_ID_WMV3;
st->codec->extradata = av_malloc(VC1_EXTRADATA_SIZE);
+ if (!st->codec->extradata)
+ return AVERROR(ENOMEM);
st->codec->extradata_size = VC1_EXTRADATA_SIZE;
avio_read(pb, st->codec->extradata, VC1_EXTRADATA_SIZE);
st->codec->height = avio_rl32(pb);
More information about the ffmpeg-cvslog
mailing list