aboutsummaryrefslogtreecommitdiff
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
-rw-r--r--ui-shared.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/ui-shared.c b/ui-shared.c
index f6d38de..b739675 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -157,11 +157,8 @@ static void site_url(const char *page, const char *search, const char *sort, int
if (always_root || page)
html_attr(cgit_rooturl());
- else {
- char *currenturl = cgit_currenturl();
- html_attr(currenturl);
- free(currenturl);
- }
+ else
+ html_attr(cgit_currenturl());
if (page) {
htmlf("?p=%s", page);
@@ -1023,21 +1020,19 @@ void cgit_print_pageheader(void)
html("<input type='submit' value='search'/>\n");
html("</form>\n");
} else if (ctx.env.authenticated) {
- char *currenturl = cgit_currenturl();
site_link(NULL, "index", NULL, hc("repolist"), NULL, NULL, 0, 1);
if (ctx.cfg.root_readme)
site_link("about", "about", NULL, hc("about"),
NULL, NULL, 0, 1);
html("</td><td class='form'>");
html("<form method='get' action='");
- html_attr(currenturl);
+ html_attr(cgit_currenturl());
html("'>\n");
html("<input type='text' name='q' size='10' value='");
html_attr(ctx.qry.search);
html("'/>\n");
html("<input type='submit' value='search'/>\n");
html("</form>");
- free(currenturl);
}
html("</td></tr></table>\n");
if (ctx.env.authenticated && ctx.qry.vpath) {