]> granicus.if.org Git - cgit/commitdiff
ui-repolist: do not use agefile if it's date could not be parsed
authorFerry Huberts <ferry.huberts@pelagic.nl>
Tue, 9 Oct 2012 11:09:58 +0000 (13:09 +0200)
committerJason A. Donenfeld <Jason@zx2c4.com>
Tue, 9 Oct 2012 11:14:21 +0000 (13:14 +0200)
Signed-off-by: Ferry Huberts <ferry.huberts@pelagic.nl>
ui-repolist.c

index 46cbacfa7b520f6280302cdeffbd04609b5e1a18..7e7f1fb4105902cfd66b7a31f16a3abc3ca54895 100644 (file)
@@ -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 ?