[RESEND] [PATCH v1 1/1] ui-repolist: do not use agefile if it's date could not be parsed

Ferry Huberts mailings at hupie.com
Tue Oct 9 13:09:58 CEST 2012


From: Ferry Huberts <ferry.huberts at pelagic.nl>

Signed-off-by: Ferry Huberts <ferry.huberts at pelagic.nl>
---
 ui-repolist.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/ui-repolist.c b/ui-repolist.c
index 46cbacf..7e7f1fb 100644
--- a/ui-repolist.c
+++ b/ui-repolist.c
@@ -43,8 +43,10 @@ static int get_repo_modtime(const struct cgit_repo *repo, time_t *mtime)
 	path = fmt("%s/%s", repo->path, ctx.cfg.agefile);
 	if (stat(path, &s) == 0) {
 		*mtime = read_agefile(path);
-		r->mtime = *mtime;
-		return 1;
+		if (*mtime) {
+			r->mtime = *mtime;
+			return 1;
+		}
 	}
 
 	path = fmt("%s/refs/heads/%s", repo->path, repo->defbranch ?
-- 
1.7.11.4





More information about the CGit mailing list