summaryrefslogtreecommitdiff
path: root/recording.c
diff options
context:
space:
mode:
Diffstat (limited to 'recording.c')
-rw-r--r--recording.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/recording.c b/recording.c
index 9cd05223..c2803255 100644
--- a/recording.c
+++ b/recording.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: recording.c 2.83 2013/01/16 14:17:44 kls Exp $
+ * $Id: recording.c 2.84 2013/01/25 14:31:04 kls Exp $
*/
#include "recording.h"
@@ -1743,12 +1743,14 @@ cIndexFile::cIndexFile(const char *FileName, bool Record, bool IsPesRecording, b
esyslog("ERROR: can't read from file '%s'", *fileName);
free(index);
index = NULL;
- close(f);
- f = -1;
}
- // we don't close f here, see CatchUp()!
else if (isPesRecording)
ConvertFromPes(index, size);
+ if (!index || time(NULL) - buf.st_mtime >= MININDEXAGE) {
+ close(f);
+ f = -1;
+ }
+ // otherwise we don't close f here, see CatchUp()!
}
else
LOG_ERROR_STR(*fileName);