diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2013-11-15 15:23:43 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2013-11-15 15:23:43 +0100 |
commit | dfb9862460bdbc326d03574b79ddefb1d0d8dfd2 (patch) | |
tree | e74b681215892a39f490ae3929bbc4c5034908db /skinlcars.c | |
parent | 215fde71a3d9afdea9f24b3fbc77490642334110 (diff) | |
download | vdr-dfb9862460bdbc326d03574b79ddefb1d0d8dfd2.tar.gz vdr-dfb9862460bdbc326d03574b79ddefb1d0d8dfd2.tar.bz2 |
Fixed a missing initialization in the c'tor of cSkinLCARSDisplayChannel
Diffstat (limited to 'skinlcars.c')
-rw-r--r-- | skinlcars.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/skinlcars.c b/skinlcars.c index 23eafa10..2cebb157 100644 --- a/skinlcars.c +++ b/skinlcars.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: skinlcars.c 3.3 2013/08/18 13:45:36 kls Exp $ + * $Id: skinlcars.c 3.4 2013/11/15 15:21:00 kls Exp $ */ // "Star Trek: The Next Generation"(R) is a registered trademark of Paramount Pictures, @@ -1775,6 +1775,7 @@ cSkinLCARSDisplayReplay::cSkinLCARSDisplayReplay(bool ModeOnly) frameColor = Theme.Color(clrReplayFrameBg); lastCurrentWidth = 0; lastTotalWidth = 0; + memset(&lastTrackId, 0, sizeof(lastTrackId)); int d = 5 * lineHeight; xp00 = 0; xp01 = xp00 + d / 2; |