[FFmpeg-cvslog] avformat/mov: Don't leak MOVFragmentStreamInfo on error

Andreas Rheinhardt git at videolan.org
Wed May 20 12:15:53 EEST 2020


ffmpeg | branch: release/4.2 | Andreas Rheinhardt <andreas.rheinhardt at gmail.com> | Mon Jan 27 09:28:19 2020 +0100| [fa7d8d63db11fa7eaaf60dc7f6573612f5f3ff98] | committer: Andreas Rheinhardt

avformat/mov: Don't leak MOVFragmentStreamInfo on error

Fixes Coverity issue #1441933.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
(cherry picked from commit 43f58f2354bfab3819e44c1a97b0af75cc091226)

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

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

diff --git a/libavformat/mov.c b/libavformat/mov.c
index 0a9abaa795..e57e7444a6 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -1327,8 +1327,10 @@ static int update_frag_index(MOVContext *c, int64_t offset)
 
     for (i = 0; i < c->fc->nb_streams; i++) {
         // Avoid building frag index if streams lack track id.
-        if (c->fc->streams[i]->id < 0)
+        if (c->fc->streams[i]->id < 0) {
+            av_free(frag_stream_info);
             return AVERROR_INVALIDDATA;
+        }
 
         frag_stream_info[i].id = c->fc->streams[i]->id;
         frag_stream_info[i].sidx_pts = AV_NOPTS_VALUE;



More information about the ffmpeg-cvslog mailing list