summaryrefslogtreecommitdiff
path: root/status.c
diff options
context:
space:
mode:
authorhorchi <vdr@jwendel.de>2017-06-22 19:12:38 +0200
committerhorchi <vdr@jwendel.de>2017-06-22 19:12:38 +0200
commit6107cc5514b1e3c22cc4ce904274780df2e9c5bb (patch)
tree828eac80382b32e8d88196145d05fb4e01efc6cd /status.c
parent2ae802510575f08d7b2cb5c3aa128eb6ae9d5d2f (diff)
downloadvdr-plugin-epg2vdr-6107cc5514b1e3c22cc4ce904274780df2e9c5bb.tar.gz
vdr-plugin-epg2vdr-6107cc5514b1e3c22cc4ce904274780df2e9c5bb.tar.bz2
2017-06-22 version 1.1.71 (horchi)\n - bugfix: Fixed crash on recording\n\n1.1.71
Diffstat (limited to 'status.c')
-rw-r--r--status.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/status.c b/status.c
index 48b01dd..fe9cfa9 100644
--- a/status.c
+++ b/status.c
@@ -148,9 +148,10 @@ int cUpdate::performRecordingActions()
GET_TIMERS_READ(timers); // get timers lock
GET_RECORDINGS_READ(recordings); // recordings lock
- while (!pendingNewRecordings.empty())
+ while (!pendingRecordingActions.empty())
{
cMutexLock lock(&runningRecMutex);
+
RecordingAction action = pendingRecordingActions.front();
pendingRecordingActions.pop();