about summary refs log tree commit diff stats
path: root/ui-plain.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui-plain.c')
-rw-r--r--ui-plain.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui-plain.c b/ui-plain.c index 4397a59..482d53a 100644 --- a/ui-plain.c +++ b/ui-plain.c
@@ -100,8 +100,9 @@ static int print_object(const unsigned char *sha1, const char *path)
100 ctx.page.etag = sha1_to_hex(sha1); 100 ctx.page.etag = sha1_to_hex(sha1);
101 cgit_print_http_headers(&ctx); 101 cgit_print_http_headers(&ctx);
102 html_raw(buf, size); 102 html_raw(buf, size);
103 /* If we allocated this, then casting away const is safe. */
103 if (freemime) 104 if (freemime)
104 free(ctx.page.mimetype); 105 free((char*) ctx.page.mimetype);
105 return 1; 106 return 1;
106} 107}
107 108