From: Jaroslav Kysela Date: Sun, 18 Feb 2018 10:26:29 +0000 (+0100) Subject: epg: eit - fix copy-n-paste bug, fixes #4946 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=689e24578674e3d3f213d9e876accbccd1590457;p=thirdparty%2Ftvheadend.git epg: eit - fix copy-n-paste bug, fixes #4946 --- diff --git a/src/epg.c b/src/epg.c index 0bace9abc..348452abf 100644 --- a/src/epg.c +++ b/src/epg.c @@ -837,7 +837,7 @@ static void _epg_broadcast_destroy ( void *eo ) snprintf(id, sizeof(id), "%u", ebc->id); notify_delayed(id, "epg", "delete"); } - if (ebc->title) lang_str_destroy(ebc->summary); + if (ebc->title) lang_str_destroy(ebc->title); if (ebc->subtitle) lang_str_destroy(ebc->subtitle); if (ebc->summary) lang_str_destroy(ebc->summary); if (ebc->description) lang_str_destroy(ebc->description);