[FFmpeg-cvslog] rtsp: Make sure we don' t write too many transport entries into a fixed-size array

Martin Storsjö git at videolan.org
Thu May 21 21:26:14 CEST 2015


ffmpeg | branch: release/2.5 | Martin Storsjö <martin at martin.st> | Fri Apr 24 12:38:09 2015 +0300| [6b7c6218393082bf6c91f08944a6d2087e2170e7] | committer: Michael Niedermayer

rtsp: Make sure we don't write too many transport entries into a fixed-size array

(cherry picked from commit b90adb0aba073f9c1b4abca852119947393ced4c)

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

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

diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c
index ae62252..6b9b544 100644
--- a/libavformat/rtsp.c
+++ b/libavformat/rtsp.c
@@ -931,6 +931,8 @@ static void rtsp_parse_transport(RTSPMessageHeader *reply, const char *p)
             p++;
 
         reply->nb_transports++;
+        if (reply->nb_transports >= RTSP_MAX_TRANSPORTS)
+            break;
     }
 }
 



More information about the ffmpeg-cvslog mailing list