diff options
author | Peter Bieringer <pb@bieringer.de> | 2021-01-24 16:52:11 +0100 |
---|---|---|
committer | Peter Bieringer <pb@bieringer.de> | 2021-01-24 16:52:11 +0100 |
commit | 542661d81c09096b983e041e2a5c7f588cd1cb3e (patch) | |
tree | 1467d015307051166318ad6a9c70f6e49643b408 | |
parent | 8d09abadee5ffc20ae2b2200de784f5e78479158 (diff) | |
download | vdr-plugin-graphlcd-542661d81c09096b983e041e2a5c7f588cd1cb3e.tar.gz vdr-plugin-graphlcd-542661d81c09096b983e041e2a5c7f588cd1cb3e.tar.bz2 |
fix deadlock for vdr >= 2.4.4 (at least found here) in case of deleting a channel
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | state.c | 4 |
2 files changed, 6 insertions, 0 deletions
@@ -1,5 +1,7 @@ VDR Plugin 'graphlcd' Revision History ------------------------------------- +2021-01-24 +- [pbiering] fix deadlock for vdr >= 2.4.4 (at least found here) in case of deleting a channel 2021-01-17 - Fix name inconsistency between read and write of setup config value "ShowReplayLogo" @@ -674,7 +674,9 @@ void cGraphLCDState::UpdateChannelInfo(void) mutex.Unlock(); } +#if APIVERSNUM < 20404 mutex.Lock(); +#endif #if APIVERSNUM < 20301 cChannel * ch = Channels.GetByNumber(mChannel.number); #else @@ -710,7 +712,9 @@ void cGraphLCDState::UpdateChannelInfo(void) mChannel.isRadio = false; } +#if APIVERSNUM < 20404 mutex.Unlock(); +#endif } void cGraphLCDState::UpdateEventInfo(void) |