summaryrefslogtreecommitdiff
path: root/eit.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2013-11-03 14:02:01 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2013-11-03 14:02:01 +0100
commit39f6b6fc6b93609c5ef5bcccdc3afd00ded7402d (patch)
treee9be15f3401ecad951fb1d5d54032a60e10b1cbd /eit.c
parent0b5085f4f00618a96eaaba97c05dd1c5177b5e42 (diff)
downloadvdr-39f6b6fc6b93609c5ef5bcccdc3afd00ded7402d.tar.gz
vdr-39f6b6fc6b93609c5ef5bcccdc3afd00ded7402d.tar.bz2
Fixed a possible access to uninitialized data in cEIT::cEIT()
Diffstat (limited to 'eit.c')
-rw-r--r--eit.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/eit.c b/eit.c
index e5fa3014..d5ca7dad 100644
--- a/eit.c
+++ b/eit.c
@@ -8,7 +8,7 @@
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
* Adapted to 'libsi' for VDR 1.3.0 by Marcel Wiesweg <marcel.wiesweg@gmx.de>.
*
- * $Id: eit.c 3.2 2013/10/12 11:10:11 kls Exp $
+ * $Id: eit.c 3.3 2013/11/03 13:55:00 kls Exp $
*/
#include "eit.h"
@@ -54,8 +54,8 @@ cEIT::cEIT(cSchedules *Schedules, int Source, u_char Tid, const u_char *Data, bo
bool Modified = false;
time_t SegmentStart = 0;
time_t SegmentEnd = 0;
- struct tm tm_r;
- struct tm t = *localtime_r(&Now, &tm_r); // this initializes the time zone in 't'
+ struct tm t = { 0 };
+ localtime_r(&Now, &t); // this initializes the time zone in 't'
SI::EIT::Event SiEitEvent;
for (SI::Loop::Iterator it; eventLoop.getNext(SiEitEvent, it); ) {