diff options
author | horchi <vdr@jwendel.de> | 2017-06-11 17:49:06 +0200 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2017-06-11 17:49:06 +0200 |
commit | 62b7aaad6475576fa8f0b415612054d36da74fc3 (patch) | |
tree | d095e4e878570d031608d499251a9da8839e5784 /status.c | |
parent | 5e865739392dba0929e8b416f18f9688a56c86e7 (diff) | |
download | vdr-plugin-epg2vdr-62b7aaad6475576fa8f0b415612054d36da74fc3.tar.gz vdr-plugin-epg2vdr-62b7aaad6475576fa8f0b415612054d36da74fc3.tar.bz2 |
2017-06-11: version 1.1.67 (horchi)\n - change: Porting to VDR 2.3.7\n\n1.1.67
Diffstat (limited to 'status.c')
-rw-r--r-- | status.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -129,8 +129,10 @@ void cUpdate::Recording(const cDevice* Device, const char* Name, const char* Fil // get timers lock #if defined (APIVERSNUM) && (APIVERSNUM >= 20301) - cTimersLock timersLock(false); - const cTimers* timers = timersLock.Timers(); + LOCK_TIMERS_READ; + const cTimers* timers = Timers; + // cTimersLock timersLock(false); + // const cTimers* timers = timersLock.Timers(); #else const cTimers* timers = &Timers; #endif |