avformat/hlsenc: Fix leak of child AVFormatContext

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>
This commit is contained in:
Andreas Rheinhardt 2019-12-16 01:04:03 +01:00 committed by Steven Liu
parent c1e215041b
commit 7d6637bcc4
1 changed files with 0 additions and 1 deletions

View File

@ -2631,7 +2631,6 @@ failed:
}
ffio_free_dyn_buf(&oc->pb);
vs->avf = NULL;
av_free(old_filename);
}