From 359d12f4ffc256fdc773bce4bf087f55b4015869 Mon Sep 17 00:00:00 2001 From: chme Date: Sun, 15 Apr 2018 09:33:41 +0200 Subject: [PATCH] [db] Free order by-clause in playist_info --- src/db.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/db.c b/src/db.c index 5e666d1b..94692a25 100644 --- a/src/db.c +++ b/src/db.c @@ -556,6 +556,7 @@ free_pli(struct playlist_info *pli, int content_only) free(pli->query); free(pli->path); free(pli->virtual_path); + free(pli->query_order); if (!content_only) free(pli);