summaryrefslogtreecommitdiff
path: root/tools.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools.c')
-rw-r--r--tools.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/tools.c b/tools.c
index ccd2783d..c9a3a44e 100644
--- a/tools.c
+++ b/tools.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: tools.c 2.16 2011/08/15 12:23:20 kls Exp $
+ * $Id: tools.c 2.17 2011/08/15 13:35:23 kls Exp $
*/
#include "tools.h"
@@ -571,7 +571,10 @@ time_t LastModifiedTime(const char *FileName)
cTimeMs::cTimeMs(int Ms)
{
- Set(Ms);
+ if (Ms >= 0)
+ Set(Ms);
+ else
+ begin = 0;
}
uint64_t cTimeMs::Now(void)