diff options
author | Ferry Huberts | 2012-10-09 13:09:58 +0200 |
---|---|---|
committer | Jason A. Donenfeld | 2012-10-09 13:14:21 +0200 |
commit | e52a5226b83dc5232adb7d9076cae3ad4b123df4 (patch) | |
tree | 86a6d998c1a475c0869cf8cc4b0fe2cb1a4c52b1 /ui-repolist.c | |
parent | 2ad9063cb53b55b1456c7d2ed08e6fb99d32ab78 (diff) | |
download | cgit-e52a5226b83dc5232adb7d9076cae3ad4b123df4.tar.gz cgit-e52a5226b83dc5232adb7d9076cae3ad4b123df4.tar.bz2 cgit-e52a5226b83dc5232adb7d9076cae3ad4b123df4.zip |
ui-repolist: do not use agefile if it's date could not be parsed
Signed-off-by: Ferry Huberts <ferry.huberts@pelagic.nl>
Diffstat (limited to 'ui-repolist.c')
-rw-r--r-- | ui-repolist.c | 6 |
1 files 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) | |||
43 | path = fmt("%s/%s", repo->path, ctx.cfg.agefile); | 43 | path = fmt("%s/%s", repo->path, ctx.cfg.agefile); |
44 | if (stat(path, &s) == 0) { | 44 | if (stat(path, &s) == 0) { |
45 | *mtime = read_agefile(path); | 45 | *mtime = read_agefile(path); |
46 | r->mtime = *mtime; | 46 | if (*mtime) { |
47 | return 1; | 47 | r->mtime = *mtime; |
48 | return 1; | ||
49 | } | ||
48 | } | 50 | } |
49 | 51 | ||
50 | path = fmt("%s/refs/heads/%s", repo->path, repo->defbranch ? | 52 | path = fmt("%s/refs/heads/%s", repo->path, repo->defbranch ? |