diff options
| author | John Keeping <john@keeping.me.uk> | 2013-04-07 12:46:45 +0100 | 
|---|---|---|
| committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2013-04-08 15:59:51 +0200 | 
| commit | 57d09bf448990b3a67436e928807e854e491756f (patch) | |
| tree | f98b55d814936d416c42f9ca14067934c6e280bc /cgit.h | |
| parent | Fix out-of-bounds memory accesses with virtual_root="" (diff) | |
| download | cgit-57d09bf448990b3a67436e928807e854e491756f.tar.gz cgit-57d09bf448990b3a67436e928807e854e491756f.tar.bz2 cgit-57d09bf448990b3a67436e928807e854e491756f.zip | |
Mark char* fields in struct cgit_page as const
Signed-off-by: John Keeping <john@keeping.me.uk>
Diffstat (limited to '')
| -rw-r--r-- | cgit.h | 12 | 
1 files changed, 6 insertions, 6 deletions
| @@ -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 { | 
