From 3f900c5587dd21b4c6bc825fbd3b67a6bca6475d Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Fri, 22 Feb 2013 17:16:43 +0100 Subject: [PATCH] channellist: initialize values to satisfy valgrind Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/b0c7ca94a7ab4ff32334da58c09cc86abe66bd37 Author: Stefan Seyfried Date: 2013-02-22 (Fri, 22 Feb 2013) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/gui/channellist.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gui/channellist.cpp b/src/gui/channellist.cpp index d70859c64..f8437f611 100644 --- a/src/gui/channellist.cpp +++ b/src/gui/channellist.cpp @@ -2158,6 +2158,7 @@ void CChannelList::paint_events(int index) evt.description = g_Locale->getText(LOCALE_EPGLIST_NOEVENTS); evt.eventID = 0; + evt.startTime = 0; evtlist.push_back(evt); } @@ -2218,6 +2219,7 @@ void CChannelList::readEvents(const t_channel_id channel_id) CChannelEvent evt; evt.description = g_Locale->getText(LOCALE_EPGLIST_NOEVENTS); evt.eventID = 0; + evt.startTime = 0; evtlist.push_back(evt); } else