summaryrefslogtreecommitdiff
path: root/channels.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-11-24 20:13:56 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2002-11-24 20:13:56 +0100
commit161b963fc50ad9c70495d921705a3e9584bd7412 (patch)
tree48a1a6ad32d068e0f38e7503246779ec34a1f8ee /channels.c
parentb4d1358c50fb095eb7a2daf494780ce193ffb453 (diff)
downloadvdr-161b963fc50ad9c70495d921705a3e9584bd7412.tar.gz
vdr-161b963fc50ad9c70495d921705a3e9584bd7412.tar.bz2
Fixed missing initialization of 'number' in cChannel
Diffstat (limited to 'channels.c')
-rw-r--r--channels.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/channels.c b/channels.c
index 6afa7b95..b69e4549 100644
--- a/channels.c
+++ b/channels.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: channels.c 1.9 2002/11/24 14:28:48 kls Exp $
+ * $Id: channels.c 1.10 2002/11/24 20:09:42 kls Exp $
*/
#include "channels.h"
@@ -174,6 +174,7 @@ cChannel::cChannel(void)
tid = 0;
sid = 888;
rid = 0;
+ number = 0;
groupSep = false;
polarization = 'v';
inversion = INVERSION_AUTO;