Mark char* fields in struct cgit_page as const

Signed-off-by: John Keeping <john@keeping.me.uk>
Αυτή η υποβολή περιλαμβάνεται σε:
John Keeping
2013-04-07 12:46:45 +01:00
υποβλήθηκε από Jason A. Donenfeld
γονέας b1f17f168b
υποβολή 57d09bf448
2 αρχεία άλλαξαν με 8 προσθήκες και 7 διαγραφές

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