Mark char* fields in struct cgit_page as const

Signed-off-by: John Keeping <john@keeping.me.uk>
Cette révision appartient à :
John Keeping 2013-04-07 12:46:45 +01:00 révisé par Jason A. Donenfeld
Parent b1f17f168b
révision 57d09bf448
2 fichiers modifiés avec 8 ajouts et 7 suppressions

12
cgit.h
Voir le fichier

@ -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 {

Voir le fichier

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