summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2013-05-26 12:00:02 +0200
committerlouis <louis.braun@gmx.de>2013-05-26 12:00:02 +0200
commit4067a403db3e28afe7bcb025e03c1979d7e0026f (patch)
tree03e312cf9902a8d108976c5aca43d98002a5a8ff
parent27e4d459f5d4af3da5adf0c98dd3c69388e99cd6 (diff)
downloadvdr-plugin-tvguide-4067a403db3e28afe7bcb025e03c1979d7e0026f.tar.gz
vdr-plugin-tvguide-4067a403db3e28afe7bcb025e03c1979d7e0026f.tar.bz2
Fixed deadlock with other plugins
-rw-r--r--channelcolumn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channelcolumn.c b/channelcolumn.c
index e2aeb61..06adb3f 100644
--- a/channelcolumn.c
+++ b/channelcolumn.c
@@ -5,7 +5,7 @@ cChannelColumn::cChannelColumn(int num, const cChannel *channel, cMyTime *myTime
this->num = num;
this->myTime = myTime;
hasTimer = channel->HasTimer();
- schedulesLock = new cSchedulesLock(true, 100);
+ schedulesLock = new cSchedulesLock(false, 100);
}
cChannelColumn::~cChannelColumn(void) {