From e8f50d0854ec3cee32fec505a7e1fb8b000aaabb Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Tue, 9 Jan 2018 08:11:26 +0100 Subject: [PATCH] epgdb: fix memory leak --- src/epgdb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/epgdb.c b/src/epgdb.c index bc98c6ac4..56bd42d59 100644 --- a/src/epgdb.c +++ b/src/epgdb.c @@ -400,6 +400,7 @@ void epg_init ( void ) htsmsg_add_u32(m, "last_id", 64 * 1024 * 1024); if (!epg_config_deserialize(m)) assert(0); + htsmsg_destroy(m); } /* Stats */ -- 2.47.3