commit | 7fea585e252ee7a584e4b2d679009518bab48ebe | [log] [tgz] |
---|---|---|
author | Christian Hesse <mail@eworm.de> | Mon Oct 10 20:17:51 2016 +0200 |
committer | Jason A. Donenfeld <Jason@zx2c4.com> | Wed Oct 12 14:13:10 2016 +0200 |
tree | d8633d6d1f0a8d97163fc1b7f826b0f942e4f612 | |
parent | 32c27e887732298da1724c0740004925fcadae39 [diff] [blame] |
ui-repolist: fix memory leak
diff --git a/ui-repolist.c b/ui-repolist.c index 1d9a7f7..7158bf7 100644 --- a/ui-repolist.c +++ b/ui-repolist.c
@@ -343,13 +343,15 @@ html_txt(ctx.repo->owner); cgit_close_filter(ctx.repo->owner_filter); } else { + char *currenturl = cgit_currenturl(); html("<a href='"); - html_attr(cgit_currenturl()); + html_attr(currenturl); html("?q="); html_url_arg(ctx.repo->owner); html("'>"); html_txt(ctx.repo->owner); html("</a>"); + free(currenturl); } html("</td><td>"); }