From 4590e161e6761cbb9fcaab7b3d216cb2b7ae0132 Mon Sep 17 00:00:00 2001 From: Sebastien Zwickert Date: Mon, 14 Nov 2011 21:56:16 +0100 Subject: [PATCH] vda: check allocation result. --- libavcodec/vda.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavcodec/vda.c b/libavcodec/vda.c index 4675e0b400..ade961ecf2 100644 --- a/libavcodec/vda.c +++ b/libavcodec/vda.c @@ -125,6 +125,9 @@ static void vda_decoder_callback (void *vda_hw_ctx, return; new_frame = av_mallocz(sizeof(vda_frame)); + if (!new_frame) + return; + new_frame->next_frame = NULL; new_frame->cv_buffer = CVPixelBufferRetain(image_buffer); new_frame->pts = vda_pts_from_dictionary(user_info);