]> git.sesse.net Git - ffmpeg/commitdiff
rtsp: Check a malloc return value
authorHimangi Saraogi <himangi774@gmail.com>
Sat, 4 Apr 2015 10:51:40 +0000 (16:21 +0530)
committerMartin Storsjö <martin@martin.st>
Sun, 12 Apr 2015 20:08:13 +0000 (23:08 +0300)
Signed-off-by: Martin Storsjö <martin@martin.st>
libavformat/rtsp.c

index 1c2c5552b9bced248533d0dbcc99181ee123f451..3246718bf19a9695d87e76814028497889d8ac0d 100644 (file)
@@ -2239,6 +2239,8 @@ static int sdp_read_header(AVFormatContext *s)
     /* read the whole sdp file */
     /* XXX: better loading */
     content = av_malloc(SDP_MAX_SIZE);
+    if (!content)
+        return AVERROR(ENOMEM);
     size = avio_read(s->pb, content, SDP_MAX_SIZE - 1);
     if (size <= 0) {
         av_free(content);