X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/b1db30cd2577fb59fb4490a284e0a34a0345cc02..fd00d2f9d6088223f57006949dc6ce7c36316a79:/ui-plain.c diff --git a/ui-plain.c b/ui-plain.c index 8ef4ec6..482d53a 100644 --- a/ui-plain.c +++ b/ui-plain.c @@ -8,6 +8,7 @@ #include #include "cgit.h" +#include "ui-plain.h" #include "html.h" #include "ui-shared.h" @@ -99,8 +100,9 @@ static int print_object(const unsigned char *sha1, const char *path) 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; }