diff options
-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(); |