ui-repolist: do not use agefile if it's date could not be parsed

Signed-off-by: Ferry Huberts <ferry.huberts@pelagic.nl>
这个提交包含在:
Ferry Huberts 2012-10-09 13:09:58 +02:00 提交者 Jason A. Donenfeld
父节点 2ad9063cb5
当前提交 e52a5226b8

查看文件

@ -43,9 +43,11 @@ static int get_repo_modtime(const struct cgit_repo *repo, time_t *mtime)
path = fmt("%s/%s", repo->path, ctx.cfg.agefile); path = fmt("%s/%s", repo->path, ctx.cfg.agefile);
if (stat(path, &s) == 0) { if (stat(path, &s) == 0) {
*mtime = read_agefile(path); *mtime = read_agefile(path);
if (*mtime) {
r->mtime = *mtime; r->mtime = *mtime;
return 1; return 1;
} }
}
path = fmt("%s/refs/heads/%s", repo->path, repo->defbranch ? path = fmt("%s/refs/heads/%s", repo->path, repo->defbranch ?
repo->defbranch : "master"); repo->defbranch : "master");