]> git.sesse.net Git - ffmpeg/commitdiff
avformat/hlsenc: Fix leak of child AVFormatContext
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Mon, 16 Dec 2019 00:04:03 +0000 (01:04 +0100)
committerSteven Liu <lq@chinaffmpeg.org>
Mon, 23 Dec 2019 06:05:26 +0000 (14:05 +0800)
Before ed897633, the hls muxer would free its child AVFormatContexts
and reset the pointer to these contexts to NULL immediately afterwards;
ed897633 moved the former to later (into a separate function), but kept
the resetting, ensuring that the child context leaks.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Reviewed-by: Steven Liu <lq@onvideo.cn>
libavformat/hlsenc.c

index 6f36a23cbe2af60e5262e05490f6f81aacc43cef..2b87070d62174e2f07e31b747418d1949017f504 100644 (file)
@@ -2631,7 +2631,6 @@ failed:
         }
         ffio_free_dyn_buf(&oc->pb);
 
-        vs->avf = NULL;
         av_free(old_filename);
     }