[FFmpeg-cvslog] avconv: Check rc_override memory allocation

Vittorio Giovara git at videolan.org
Tue Feb 17 21:08:32 CET 2015


ffmpeg | branch: master | Vittorio Giovara <vittorio.giovara at gmail.com> | Wed Feb  4 14:21:00 2015 +0000| [81688e68f93f3142e2093f1a3d226edaeb179992] | committer: Vittorio Giovara

avconv: Check rc_override memory allocation

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

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

 avconv_opt.c |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/avconv_opt.c b/avconv_opt.c
index 74e235b..1625429 100644
--- a/avconv_opt.c
+++ b/avconv_opt.c
@@ -1136,6 +1136,10 @@ static OutputStream *new_video_stream(OptionsContext *o, AVFormatContext *oc)
             video_enc->rc_override =
                 av_realloc(video_enc->rc_override,
                            sizeof(RcOverride) * (i + 1));
+            if (!video_enc->rc_override) {
+                av_log(NULL, AV_LOG_FATAL, "Could not (re)allocate memory for rc_override.\n");
+                exit_program(1);
+            }
             video_enc->rc_override[i].start_frame = start;
             video_enc->rc_override[i].end_frame   = end;
             if (q > 0) {



More information about the ffmpeg-cvslog mailing list