From 5a6a5695bbcedf402cc8b23d6a990c8bd3faa670 Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 16 Oct 2014 01:01:27 +0200 Subject: player: free subtitle renderer on exit This was probably commented as an oversight. Since the subtitle renderer was uninitialized on reinitialization anyway, this had no negative consequences, except a memory on exit. --- player/loadfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/player/loadfile.c b/player/loadfile.c index 6d6de1676b..f448389754 100644 --- a/player/loadfile.c +++ b/player/loadfile.c @@ -1231,7 +1231,7 @@ terminate_playback: uninit_audio_chain(mpctx); uninit_video_chain(mpctx); uninit_sub_all(mpctx); - //uninit_sub_renderer(mpctx); + uninit_sub_renderer(mpctx); uninit_demuxer(mpctx); uninit_stream(mpctx); if (!opts->fixed_vo) -- cgit v1.2.3