X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/8f208794318f83826e98168b8b430f2d9a68bcce..42d5476f258e7909682f1b611da00d64507d45c6:/ui-plain.c diff --git a/ui-plain.c b/ui-plain.c index 4397a59..6b0d84b 100644 --- a/ui-plain.c +++ b/ui-plain.c @@ -95,13 +95,14 @@ static int print_object(const unsigned char *sha1, const char *path) else ctx.page.mimetype = "text/plain"; } - ctx.page.filename = fmt("%s", path); + ctx.page.filename = path; ctx.page.size = size; ctx.page.etag = sha1_to_hex(sha1); cgit_print_http_headers(&ctx); html_raw(buf, size); + /* If we allocated this, then casting away const is safe. */ if (freemime) - free(ctx.page.mimetype); + free((char*) ctx.page.mimetype); return 1; }