summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2017-10-31 09:47:14 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2017-10-31 09:47:14 +0100
commit19275aa8bbc3407406d473debf316d0dbe6f45e3 (patch)
tree93328431f7d1aaff7a1665091c93ebe858a4ebb0 /menu.c
parent7bbbfb0dee56942458968e538830a3e5ec785bb5 (diff)
downloadvdr-19275aa8bbc3407406d473debf316d0dbe6f45e3.tar.gz
vdr-19275aa8bbc3407406d473debf316d0dbe6f45e3.tar.bz2
Fixed an invalid lock sequence when trying to remove a deleted recording in case of low disk space; now making sure that AssertFreeDiskSpace() is called with the maximum timer priority in case there are several timers recording with different priorities
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/menu.c b/menu.c
index c2c12dd8..105a7164 100644
--- a/menu.c
+++ b/menu.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.c 4.41 2017/06/30 09:49:39 kls Exp $
+ * $Id: menu.c 4.42 2017/10/31 09:42:07 kls Exp $
*/
#include "menu.h"
@@ -5208,7 +5208,6 @@ bool cRecordControl::Process(time_t t)
timer->SetPending(false);
return false;
}
- AssertFreeDiskSpace(timer->Priority());
return true;
}