diff options
author | Christian Wieninger <cwieninger@gmx.de> | 2015-07-15 22:55:40 +0200 |
---|---|---|
committer | Christian Wieninger <cwieninger@gmx.de> | 2015-07-15 22:55:40 +0200 |
commit | 58519c44d5a4c395b0fddf092a822e812e33b3b8 (patch) | |
tree | d75f18d13510f0ff3101525070839543df757aa3 /switchtimer.c | |
parent | 6937a8d166cf0803e20993dbc2bc19e2dbaf98ee (diff) | |
download | vdr-plugin-epgsearch-58519c44d5a4c395b0fddf092a822e812e33b3b8.tar.gz vdr-plugin-epgsearch-58519c44d5a4c395b0fddf092a822e812e33b3b8.tar.bz2 |
fix for bug #2214
Diffstat (limited to 'switchtimer.c')
-rw-r--r-- | switchtimer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/switchtimer.c b/switchtimer.c index 12dfac1..20c017b 100644 --- a/switchtimer.c +++ b/switchtimer.c @@ -157,7 +157,7 @@ bool cSwitchTimer::Save(FILE *f) cSwitchTimer* cSwitchTimers::InSwitchList(const cEvent* event) { - if (!event) return false; + if (!event) return NULL; cMutexLock SwitchTimersLock(this); cSwitchTimer* switchTimer = SwitchTimers.First(); while (switchTimer) |