]> git.sesse.net Git - ffmpeg/commitdiff
avformat/dashenc: Fix a resource leak when http persistent in enabled
authorKarthick Jeyapal <kjeyapal@akamai.com>
Tue, 2 Jan 2018 08:19:56 +0000 (13:49 +0530)
committerKarthick Jeyapal <kjeyapal@akamai.com>
Fri, 26 Jan 2018 01:55:31 +0000 (07:25 +0530)
libavformat/dashenc.c

index 5ece1002fe1b99ee7273138dc3b7276a72946cfb..38cc592cde227b39af8fb96144bcc4af88aa3825 100644 (file)
@@ -1,6 +1,7 @@
 /*
  * MPEG-DASH ISO BMFF segmenter
  * Copyright (c) 2014 Martin Storsjo
+ * Copyright (c) 2018 Akamai Technologies, Inc.
  *
  * This file is part of FFmpeg.
  *
@@ -309,6 +310,9 @@ static void dash_free(AVFormatContext *s)
         av_free(os->segments);
     }
     av_freep(&c->streams);
+
+    ff_format_io_close(s, &c->mpd_out);
+    ff_format_io_close(s, &c->m3u8_out);
 }
 
 static void output_segment_list(OutputStream *os, AVIOContext *out, AVFormatContext *s,