diff options
author | Nicolas George <george@nsup.org> | 2013-12-29 10:52:19 +0100 |
---|---|---|
committer | Nicolas George <george@nsup.org> | 2013-12-30 10:58:02 +0100 |
commit | 19a2d101acc0260bb310e79010a8491b10716189 (patch) | |
tree | 7a4aafa4c50a56c4a9be4249c5c190bd04f8b087 | |
parent | 97af2faaba70c866ae4c11459a79a16d4a014530 (diff) | |
download | ffmpeg-19a2d101acc0260bb310e79010a8491b10716189.tar.gz |
lavc/mjpegenc: check av_frame_alloc() failure.
-rw-r--r-- | libavcodec/mjpegenc.c | 2 |
1 files changed, 2 insertions, 0 deletions
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++) { |