From 70b3ef658bfb6f63cd4efc4fcf8f600ad6f17551 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Mon, 1 Dec 2014 20:50:29 +0100 Subject: [PATCH] IPTV: mux - fix simple memory leak --- src/input/mpegts/iptv/iptv_mux.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/input/mpegts/iptv/iptv_mux.c b/src/input/mpegts/iptv/iptv_mux.c index c743d7e4..f884666b 100644 --- a/src/input/mpegts/iptv/iptv_mux.c +++ b/src/input/mpegts/iptv/iptv_mux.c @@ -183,6 +183,7 @@ iptv_mux_delete ( mpegts_mux_t *mm, int delconf ) muxname = im->mm_iptv_muxname; free(im->mm_iptv_interface); free(im->mm_iptv_svcname); + free(im->mm_iptv_env); mpegts_mux_delete(mm, delconf); free(url); free(url_sane);