From 7e1d89b8086f022ab2a7e5ceedba2acd8c964b52 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Tue, 20 Jun 2023 22:52:07 +0200 Subject: [PATCH] server: Fix memory leak at exit. If a playlist is open on exit, we miss to free it. Not a real leak, but still.. --- afs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/afs.c b/afs.c index 9db94a82..83889bb9 100644 --- a/afs.c +++ b/afs.c @@ -963,6 +963,7 @@ __noreturn void afs_init(int socket_fd) ret = schedule(&s); sched_shutdown(&s); mood_unload(); + playlist_unload(); out_close: close_afs_tables(); out: -- 2.39.2