diff options
author | horchi <vdr@jwendel.de> | 2017-06-22 19:12:38 +0200 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2017-06-22 19:12:38 +0200 |
commit | 6107cc5514b1e3c22cc4ce904274780df2e9c5bb (patch) | |
tree | 828eac80382b32e8d88196145d05fb4e01efc6cd | |
parent | 2ae802510575f08d7b2cb5c3aa128eb6ae9d5d2f (diff) | |
download | vdr-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.h | 5 | ||||
-rw-r--r-- | status.c | 3 |
2 files changed, 6 insertions, 2 deletions
@@ -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 @@ -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(); |