summaryrefslogtreecommitdiff
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
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
-rw-r--r--HISTORY.h5
-rw-r--r--status.c3
2 files changed, 6 insertions, 2 deletions
diff --git a/HISTORY.h b/HISTORY.h
index a176f2c..db2cf36 100644
--- a/HISTORY.h
+++ b/HISTORY.h
@@ -5,7 +5,7 @@
*
*/
-#define _VERSION "1.1.70"
+#define _VERSION "1.1.71"
#define VERSION_DATE "22.06.2017"
#define DB_API 4
@@ -19,6 +19,9 @@
/*
* ------------------------------------
+2017-06-22 version 1.1.71 (horchi)
+ - bugfix: Fixed crash on recording
+
2017-06-22 version 1.1.70 (horchi)
- change: Fixed possible crash with unknown channels on wrong configuration
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();