-rw-r--r-- | cgit.c | 3 | ||||
-rw-r--r-- | ui-tag.c | 5 |
2 files changed, 7 insertions, 1 deletions
@@ -179,2 +179,5 @@ static void querystring_cb(const char *name, const char *value) { + if (!value) + value = ""; + if (!strcmp(name,"r")) { @@ -39,3 +39,6 @@ void cgit_print_tag(char *revname) - if (get_sha1(revname, sha1)) { + if (!revname) + revname = ctx.qry.head; + + if (get_sha1(fmt("refs/tags/%s", revname), sha1)) { cgit_print_error(fmt("Bad tag reference: %s", revname)); |