summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/video.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libmpdemux/video.c b/libmpdemux/video.c
index ea770e26fb..6ff8210564 100644
--- a/libmpdemux/video.c
+++ b/libmpdemux/video.c
@@ -401,6 +401,10 @@ mpeg_header_parser:
if(mp_vc1_decode_sequence_header(&picture, &videobuffer[4], videobuf_len-4)) {
sh_video->bih = (BITMAPINFOHEADER *) calloc(1, sizeof(BITMAPINFOHEADER) + videobuf_len);
+ if(sh_video->bih == NULL) {
+ mp_msg(MSGT_DECVIDEO,MSGL_ERR,"Couldn't alloc %d bytes for VC-1 extradata!\n", sizeof(BITMAPINFOHEADER) + videobuf_len);
+ return 0;
+ }
sh_video->bih->biSize= sizeof(BITMAPINFOHEADER) + videobuf_len;
memcpy(sh_video->bih + 1, videobuffer, videobuf_len);
sh_video->bih->biCompression = sh_video->format;