diff --git a/HISTORY b/HISTORY index 141fadba..d4bc2d32 100644 --- a/HISTORY +++ b/HISTORY @@ -9842,3 +9842,4 @@ Video Disk Recorder Revision History - Added a note to epg.h about not messing with event ids (suggested by Winfried Köhler). - Added a note to vdr.5 about event ids possibly changing when an event moves from one table to another. +- Fixed initializing cDvbPlayerControl (was broken in version 2.6.3). diff --git a/dvbplayer.c b/dvbplayer.c index ee6e501c..9caf3071 100644 --- a/dvbplayer.c +++ b/dvbplayer.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbplayer.c 5.2 2022/12/05 14:45:51 kls Exp $ + * $Id: dvbplayer.c 5.3 2022/12/27 15:57:20 kls Exp $ */ #include "dvbplayer.h" @@ -981,7 +981,7 @@ bool cDvbPlayer::GetReplayMode(bool &Play, bool &Forward, int &Speed) // --- cDvbPlayerControl ----------------------------------------------------- cDvbPlayerControl::cDvbPlayerControl(const char *FileName, bool PauseLive) -:cControl(NULL, PauseLive) +:cControl(NULL) { player = new cDvbPlayer(FileName, PauseLive); SetPlayer(player);