Commit f122cbf0 authored by Paul B Mahol's avatar Paul B Mahol Committed by Michael Niedermayer

v210x: check for return value of avcodec_alloc_frame()

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 7299e5d5
......@@ -31,6 +31,8 @@ static av_cold int decode_init(AVCodecContext *avctx)
avctx->bits_per_raw_sample= 10;
avctx->coded_frame= avcodec_alloc_frame();
if (!avctx->coded_frame)
return AVERROR(ENOMEM);
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment