[FFmpeg-cvslog] mov: Check memory allocation

Vittorio Giovara git at videolan.org
Mon Jun 8 23:03:57 CEST 2015


ffmpeg | branch: master | Vittorio Giovara <vittorio.giovara at gmail.com> | Wed Jun  3 14:16:49 2015 +0100| [6308cd4868d2bd5fdf8bfa8dd10856c9a91874f5] | committer: Vittorio Giovara

mov: Check memory allocation

CC: libav-stable at libav.org
Bug-Id: CID 1292518

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

 libavformat/mov.c |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/libavformat/mov.c b/libavformat/mov.c
index 80681b7..f603446 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -1661,7 +1661,11 @@ static int mov_finalize_stsd_codec(MOVContext *c, AVIOContext *pb,
     switch (st->codec->codec_id) {
 #if CONFIG_DV_DEMUXER
     case AV_CODEC_ID_DVAUDIO:
-        c->dv_fctx  = avformat_alloc_context();
+        c->dv_fctx = avformat_alloc_context();
+        if (!c->dv_fctx) {
+            av_log(c->fc, AV_LOG_ERROR, "dv demux context alloc error\n");
+            return AVERROR(ENOMEM);
+        }
         c->dv_demux = avpriv_dv_init_demux(c->dv_fctx);
         if (!c->dv_demux) {
             av_log(c->fc, AV_LOG_ERROR, "dv demux context init error\n");



More information about the ffmpeg-cvslog mailing list