summaryrefslogtreecommitdiff
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
parentb4d1358c50fb095eb7a2daf494780ce193ffb453 (diff)
downloadvdr-161b963fc50ad9c70495d921705a3e9584bd7412.tar.gz
vdr-161b963fc50ad9c70495d921705a3e9584bd7412.tar.bz2
Fixed missing initialization of 'number' in cChannel
-rw-r--r--CONTRIBUTORS1
-rw-r--r--HISTORY5
-rw-r--r--channels.c3
-rw-r--r--config.h4
4 files changed, 10 insertions, 3 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index d8ecbf35..fd25c420 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -48,6 +48,7 @@ Martin Hammerschmid <martin@hammerschmid.com>
for adding a missing #include to ringbuffer.c
for adding a missing 'public' keyword in device.h
for pointing out a bug in displaying the group separators in the channel display
+ for reporting a problem with a missing initialization of 'number' in cChannel
Bastian Guse <bastian@nocopy.de>
for writing the FORMATS entry for timers.conf
diff --git a/HISTORY b/HISTORY
index 4d215082..ebec7985 100644
--- a/HISTORY
+++ b/HISTORY
@@ -1812,3 +1812,8 @@ Video Disk Recorder Revision History
'now +/- LOCKFILESTALETIME'. This improves things in cases where the system time
makes far jumps, so that a lock file might end up with a time stamp that lies
in the distant future (thanks to Oliver Endriss).
+
+2002-11-24: Version 1.1.18
+
+- Fixed missing initialization of 'number' in cChannel (thanks to Martin Hammerschmid
+ for reporting this one).
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;
diff --git a/config.h b/config.h
index 0c84ad41..43fbfbad 100644
--- a/config.h
+++ b/config.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.h 1.141 2002/11/24 12:28:20 kls Exp $
+ * $Id: config.h 1.142 2002/11/24 20:09:56 kls Exp $
*/
#ifndef __CONFIG_H
@@ -19,7 +19,7 @@
#include "device.h"
#include "tools.h"
-#define VDRVERSION "1.1.17"
+#define VDRVERSION "1.1.18"
#define MAXPRIORITY 99
#define MAXLIFETIME 99