diff options
| author | Jason A. Donenfeld | 2013-05-25 14:50:19 +0200 |
|---|---|---|
| committer | Jason A. Donenfeld | 2013-05-25 20:33:28 +0200 |
| commit | c0dfaf1c281d0697ce43131343d7a9f170a61ff9 (patch) | |
| tree | e52a47596e72d9a7f1ebb19fd4fe5b3a39d95567 /ui-repolist.c | |
| parent | 3cb5d86dc68bab4883bf5a7cbc90f3e266237355 (diff) | |
| download | cgit-c0dfaf1c281d0697ce43131343d7a9f170a61ff9.tar.gz cgit-c0dfaf1c281d0697ce43131343d7a9f170a61ff9.tar.bz2 cgit-c0dfaf1c281d0697ce43131343d7a9f170a61ff9.zip | |
ui-summary: Pass filename to about-filter
This gives the about-filter API the same semantics as source-filter,
where the filter receives the filename so it can decide what to do next
with it.
While we're at it, plug a memory leak.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'ui-repolist.c')
| -rw-r--r-- | ui-repolist.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ui-repolist.c b/ui-repolist.c index 47ca997..2ab6e9e 100644 --- a/ui-repolist.c +++ b/ui-repolist.c | |||
| @@ -332,9 +332,13 @@ void cgit_print_site_readme() | |||
| 332 | { | 332 | { |
| 333 | if (!ctx.cfg.root_readme) | 333 | if (!ctx.cfg.root_readme) |
| 334 | return; | 334 | return; |
| 335 | if (ctx.cfg.about_filter) | 335 | if (ctx.cfg.about_filter) { |
| 336 | ctx.cfg.about_filter->argv[1] = ctx.cfg.root_readme; | ||
| 336 | cgit_open_filter(ctx.cfg.about_filter); | 337 | cgit_open_filter(ctx.cfg.about_filter); |
| 338 | } | ||
| 337 | html_include(ctx.cfg.root_readme); | 339 | html_include(ctx.cfg.root_readme); |
| 338 | if (ctx.cfg.about_filter) | 340 | if (ctx.cfg.about_filter) { |
| 339 | cgit_close_filter(ctx.cfg.about_filter); | 341 | cgit_close_filter(ctx.cfg.about_filter); |
| 342 | ctx.cfg.about_filter->argv[1] = NULL; | ||
| 343 | } | ||
| 340 | } | 344 | } |
