mirror of
https://git.zx2c4.com/cgit
synced 2024-11-22 08:28:42 +00:00
Merge branch 'stable'
This commit is contained in:
commit
cb92d05b6b
3
cgit.c
3
cgit.c
@ -177,6 +177,9 @@ void config_cb(const char *name, const char *value)
|
|||||||
|
|
||||||
static void querystring_cb(const char *name, const char *value)
|
static void querystring_cb(const char *name, const char *value)
|
||||||
{
|
{
|
||||||
|
if (!value)
|
||||||
|
value = "";
|
||||||
|
|
||||||
if (!strcmp(name,"r")) {
|
if (!strcmp(name,"r")) {
|
||||||
ctx.qry.repo = xstrdup(value);
|
ctx.qry.repo = xstrdup(value);
|
||||||
ctx.repo = cgit_get_repoinfo(value);
|
ctx.repo = cgit_get_repoinfo(value);
|
||||||
|
5
ui-tag.c
5
ui-tag.c
@ -37,7 +37,10 @@ void cgit_print_tag(char *revname)
|
|||||||
struct tag *tag;
|
struct tag *tag;
|
||||||
struct taginfo *info;
|
struct taginfo *info;
|
||||||
|
|
||||||
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));
|
cgit_print_error(fmt("Bad tag reference: %s", revname));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user