Fixed some faulty default parameter initializations

This commit is contained in:
Klaus Schmidinger 2002-10-13 16:12:55 +02:00
parent b2ef221f40
commit 15a2d36aca
5 changed files with 11 additions and 6 deletions

View File

@ -428,6 +428,7 @@ Andy Carter <fruit@ukgateway.net>
Robert Schiele <rschiele@uni-mannheim.de>
for his help in keeping 'channels.conf.cable' up to date
for reporting some faulty default parameter initializations
Gerhard Steiner <steiner@mail.austria.com>
for suggesting that the SVDRP command PUTE shall trigger an immediate write of

View File

@ -1610,3 +1610,7 @@ Video Disk Recorder Revision History
- The new configuration file 'reccmds.conf' can be used to define commands that
shall be executed from the "Recordings" menu; see MANUAL and 'man vdr(5)' for
details (suggested by Gerhard Steiner).
2002-10-13: Version 1.1.14
- Fixed some faulty default parameter initializations (thanks to Robert Schiele).

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: config.h 1.134 2002/10/13 10:03:09 kls Exp $
* $Id: config.h 1.135 2002/10/13 16:12:55 kls Exp $
*/
#ifndef __CONFIG_H
@ -20,7 +20,7 @@
#include "eit.h"
#include "tools.h"
#define VDRVERSION "1.1.13"
#define VDRVERSION "1.1.14"
#define MAXPRIORITY 99
#define MAXLIFETIME 99

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: dvbplayer.c 1.14 2002/10/12 12:29:31 kls Exp $
* $Id: dvbplayer.c 1.15 2002/10/13 16:08:40 kls Exp $
*/
#include "dvbplayer.h"
@ -635,7 +635,7 @@ int cDvbPlayer::NumAudioTracks(void) const
return canToggleAudioTrack ? 2 : 1;
}
const char **cDvbPlayer::GetAudioTracks(int *CurrentTrack = NULL) const
const char **cDvbPlayer::GetAudioTracks(int *CurrentTrack) const
{
if (NumAudioTracks()) {
if (CurrentTrack)

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: transfer.c 1.4 2002/10/12 13:32:48 kls Exp $
* $Id: transfer.c 1.5 2002/10/13 16:08:44 kls Exp $
*/
#include "transfer.h"
@ -155,7 +155,7 @@ int cTransfer::NumAudioTracks(void) const
return canToggleAudioTrack ? 2 : 1;
}
const char **cTransfer::GetAudioTracks(int *CurrentTrack = NULL) const
const char **cTransfer::GetAudioTracks(int *CurrentTrack) const
{
if (NumAudioTracks()) {
if (CurrentTrack)