[FFmpeg-cvslog] lavc/mjpegenc: check av_frame_alloc() failure.

Nicolas George git at videolan.org
Mon Dec 30 13:37:39 CET 2013


ffmpeg | branch: master | Nicolas George <george at nsup.org> | Sun Dec 29 10:52:19 2013 +0100| [19a2d101acc0260bb310e79010a8491b10716189] | committer: Nicolas George

lavc/mjpegenc: check av_frame_alloc() failure.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=19a2d101acc0260bb310e79010a8491b10716189
---

 libavcodec/mjpegenc.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavcodec/mjpegenc.c b/libavcodec/mjpegenc.c
index f23343a..7837ce9 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++) {



More information about the ffmpeg-cvslog mailing list