Skip to content

Commit

Permalink
fixed compilation for VDR 2.3.7 (thanks to Jasmin J)
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank Schmirler committed Sep 30, 2017
1 parent 6440782 commit e2a9b97
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -258,3 +258,4 @@ David Binderman
Jasmin J
for fixing some warnings in libdvbmpeg
for adding .gitignore
for fixing compilation for VDR 2.3.7
1 change: 1 addition & 0 deletions HISTORY
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
VDR Plugin 'streamdev' Revision History
---------------------------------------

- fixed compilation for VDR 2.3.7 (thanks to Jasmin J)
- added .gitignore (thanks to Jasmin J)
- fixed some warnings in libdvbmpeg (thanks to Jasmin J)
- fixed lseek error check in libdvbmpeg (thanks to David Binderman)
Expand Down
4 changes: 4 additions & 0 deletions server/connectionVTP.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ class cLSTEHandler
enum eStates { Channel, Event, Title, Subtitle, Description, Vps, Content, Rating,
EndEvent, EndChannel, EndEPG };
cConnectionVTP *m_Client;
#if APIVERSNUM < 20300
cSchedulesLock *m_SchedulesLock;
#endif
const cSchedules *m_Schedules;
const cSchedule *m_Schedule;
const cEvent *m_Event;
Expand Down Expand Up @@ -210,7 +212,9 @@ cLSTEHandler::cLSTEHandler(cConnectionVTP *Client, const char *Option):

cLSTEHandler::~cLSTEHandler()
{
#if APIVERSNUM < 20300
delete m_SchedulesLock;
#endif
}

bool cLSTEHandler::Next(bool &Last)
Expand Down

0 comments on commit e2a9b97

Please sign in to comment.