about summary refs log tree commit diff stats
path: root/ui-refs.c
diff options
context:
space:
mode:
authorRobin Redeker2009-01-10 12:44:08 +0100
committerLars Hjemli2009-01-10 12:48:39 +0100
commit5164be32778e2bca146e13904e5b9e79d0d6cca8 (patch)
tree4bec149936f765df05640768701f045dedef3bc7 /ui-refs.c
parentMerge branch 'stable' (diff)
downloadcgit-5164be32778e2bca146e13904e5b9e79d0d6cca8.tar.gz
cgit-5164be32778e2bca146e13904e5b9e79d0d6cca8.zip
ui-refs: avoid SEGFAULT on lightweight tags
Signed-off-by: Robin Redeker <elmex@ta-sa.org>
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-refs.c')
-rw-r--r--ui-refs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-refs.c b/ui-refs.c index d61ee7c..c35e694 100644 --- a/ui-refs.c +++ b/ui-refs.c
@@ -141,7 +141,7 @@ static int print_tag(struct refinfo *ref)
141 html("<tr><td>"); 141 html("<tr><td>");
142 html_txt(name); 142 html_txt(name);
143 html("</td><td>"); 143 html("</td><td>");
144 if (ctx.repo->snapshots && (tag->tagged->type == OBJ_COMMIT)) 144 if (ctx.repo->snapshots && (ref->object->type == OBJ_COMMIT))
145 print_tag_downloads(ctx.repo, name); 145 print_tag_downloads(ctx.repo, name);
146 else 146 else
147 cgit_object_link(ref->object); 147 cgit_object_link(ref->object);