commit | 57d09bf448990b3a67436e928807e854e491756f | [log] [tgz] |
---|---|---|
author | John Keeping <john@keeping.me.uk> | Sun Apr 07 12:46:45 2013 +0100 |
committer | Jason A. Donenfeld <Jason@zx2c4.com> | Mon Apr 08 15:59:51 2013 +0200 |
tree | f98b55d814936d416c42f9ca14067934c6e280bc | |
parent | b1f17f168b91d709c0c0e62608de301a36f06da9 [diff] [blame] |
Mark char* fields in struct cgit_page as const Signed-off-by: John Keeping <john@keeping.me.uk>
diff --git a/ui-plain.c b/ui-plain.c index 4397a59..482d53a 100644 --- a/ui-plain.c +++ b/ui-plain.c
@@ -100,8 +100,9 @@ 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; }