|
diff --git a/cgit.c b/cgit.c index 66dd140..5816f3d 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -172,16 +172,19 @@ void config_cb(const char *name, const char *value) |
172 | else |
172 | else |
173 | ctx.repo->readme = xstrdup(fmt("%s/%s", ctx.repo->path, value)); |
173 | ctx.repo->readme = xstrdup(fmt("%s/%s", ctx.repo->path, value)); |
174 | } else if (!strcmp(name, "include")) |
174 | } else if (!strcmp(name, "include")) |
175 | parse_configfile(value, config_cb); |
175 | parse_configfile(value, config_cb); |
176 | } |
176 | } |
177 | |
177 | |
178 | static void querystring_cb(const char *name, const char *value) |
178 | static void querystring_cb(const char *name, const char *value) |
179 | { |
179 | { |
| |
180 | if (!value) |
| |
181 | value = ""; |
| |
182 | |
180 | if (!strcmp(name,"r")) { |
183 | if (!strcmp(name,"r")) { |
181 | ctx.qry.repo = xstrdup(value); |
184 | ctx.qry.repo = xstrdup(value); |
182 | ctx.repo = cgit_get_repoinfo(value); |
185 | ctx.repo = cgit_get_repoinfo(value); |
183 | } else if (!strcmp(name, "p")) { |
186 | } else if (!strcmp(name, "p")) { |
184 | ctx.qry.page = xstrdup(value); |
187 | ctx.qry.page = xstrdup(value); |
185 | } else if (!strcmp(name, "url")) { |
188 | } else if (!strcmp(name, "url")) { |
186 | ctx.qry.url = xstrdup(value); |
189 | ctx.qry.url = xstrdup(value); |
187 | cgit_parse_url(value); |
190 | cgit_parse_url(value); |
|
|
diff --git a/ui-tag.c b/ui-tag.c index a9c8670..c2d72af 100644 --- a/ ui-tag.c+++ b/ ui-tag.c |
|
@@ -32,17 +32,20 @@ static void print_tag_content(char *buf) |
32 | |
32 | |
33 | void cgit_print_tag(char *revname) |
33 | void cgit_print_tag(char *revname) |
34 | { |
34 | { |
35 | unsigned char sha1[20]; |
35 | unsigned char sha1[20]; |
36 | struct object *obj; |
36 | struct object *obj; |
37 | struct tag *tag; |
37 | struct tag *tag; |
38 | struct taginfo *info; |
38 | struct taginfo *info; |
39 | |
39 | |
40 | if (get_sha1(revname, sha1)) { |
40 | if (!revname) |
| |
41 | revname = ctx.qry.head; |
| |
42 | |
| |
43 | if (get_sha1(fmt("refs/tags/%s", revname), sha1)) { |
41 | cgit_print_error(fmt("Bad tag reference: %s", revname)); |
44 | cgit_print_error(fmt("Bad tag reference: %s", revname)); |
42 | return; |
45 | return; |
43 | } |
46 | } |
44 | obj = parse_object(sha1); |
47 | obj = parse_object(sha1); |
45 | if (!obj) { |
48 | if (!obj) { |
46 | cgit_print_error(fmt("Bad object id: %s", sha1_to_hex(sha1))); |
49 | cgit_print_error(fmt("Bad object id: %s", sha1_to_hex(sha1))); |
47 | return; |
50 | return; |
48 | } |
51 | } |
|