all repos — cgit @ 57d09bf448990b3a67436e928807e854e491756f

a hyperfast web frontend for git written in c

Mark char* fields in struct cgit_page as const

Signed-off-by: John Keeping <john@keeping.me.uk>
John Keeping john@keeping.me.uk
Sun, 07 Apr 2013 12:46:45 +0100
commit

57d09bf448990b3a67436e928807e854e491756f

parent

b1f17f168b91d709c0c0e62608de301a36f06da9

2 files changed, 8 insertions(+), 7 deletions(-)

jump to
M cgit.hcgit.h

@@ -245,13 +245,13 @@ struct cgit_page {

time_t modified; time_t expires; size_t size; - char *mimetype; - char *charset; - char *filename; - char *etag; - char *title; + const char *mimetype; + const char *charset; + const char *filename; + const char *etag; + const char *title; int status; - char *statusmsg; + const char *statusmsg; }; struct cgit_environment {
M ui-plain.cui-plain.c

@@ -100,8 +100,9 @@ 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; }