aboutsummaryrefslogtreecommitdiff
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
-rw-r--r--cgit.h12
-rw-r--r--ui-plain.c3
2 files changed, 7 insertions, 8 deletions
diff --git a/cgit.h b/cgit.h
index 7581cc1..fc3fc6f 100644
--- a/cgit.h
+++ b/cgit.h
@@ -245,13 +245,13 @@ struct cgit_page {
time_t modified;
time_t expires;
size_t size;
- const char *mimetype;
- const char *charset;
- const char *filename;
- const char *etag;
- const char *title;
+ char *mimetype;
+ char *charset;
+ char *filename;
+ char *etag;
+ char *title;
int status;
- const char *statusmsg;
+ char *statusmsg;
};
struct cgit_environment {
diff --git a/ui-plain.c b/ui-plain.c
index 482d53a..4397a59 100644
--- a/ui-plain.c
+++ b/ui-plain.c
@@ -100,9 +100,8 @@ 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((char*) ctx.page.mimetype);
+ free(ctx.page.mimetype);
return 1;
}