From 0d7142dcc98b6d6b30f4695ac0d317ed4a1a25b6 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 12 Dec 2008 18:29:04 +0100 Subject: [PATCH] main: deinitialize lyrics library Free memory held by the plugin list at the end, make valgrind happier. --- src/main.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main.c b/src/main.c index 752ccdf..6790137 100644 --- a/src/main.c +++ b/src/main.c @@ -510,6 +510,11 @@ main(int argc, const char *argv[]) #endif exit_and_cleanup(); + +#ifdef ENABLE_LYRICS_SCREEN + lyrics_deinit(); +#endif + ncu_deinit(); return 0; -- 2.30.2