[FFmpeg-cvslog] rtsp: Check a memory allocation

Michael Lynch git at videolan.org
Thu Oct 16 12:38:50 CEST 2014


ffmpeg | branch: master | Michael Lynch <mtlynch at google.com> | Tue Oct 14 16:30:39 2014 -0400| [460b509a34fb5fad3bedac8429f53594d3923ea8] | committer: Martin Storsjö

rtsp: Check a memory allocation

CC: libav-stable at libav.org
Signed-off-by: Martin Storsjö <martin at martin.st>

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

 libavformat/rtsp.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c
index d574797..52f52a1 100644
--- a/libavformat/rtsp.c
+++ b/libavformat/rtsp.c
@@ -1146,6 +1146,8 @@ start:
     if (content_length > 0) {
         /* leave some room for a trailing '\0' (useful for simple parsing) */
         content = av_malloc(content_length + 1);
+        if (!content)
+            return AVERROR(ENOMEM);
         ffurl_read_complete(rt->rtsp_hd, content, content_length);
         content[content_length] = '\0';
     }



More information about the ffmpeg-cvslog mailing list