diff --git a/libavcodec/mjpegenc.c b/libavcodec/mjpegenc.c index f23343af84..7837ce975e 100644 --- a/libavcodec/mjpegenc.c +++ b/libavcodec/mjpegenc.c @@ -548,6 +548,8 @@ static int amv_encode_picture(AVCodecContext *avctx, AVPacket *pkt, return -1; pic = av_frame_alloc(); + if (!pic) + return AVERROR(ENOMEM); av_frame_ref(pic, pic_arg); //picture should be flipped upside-down for(i=0; i < 3; i++) {