aboutsummaryrefslogtreecommitdiffstats
path: root/cgit.c
diff options
context:
space:
mode:
authorJohn Keeping <john@keeping.me.uk>2018-06-20 18:12:09 +0800
committerJason A. Donenfeld <Jason@zx2c4.com>2018-06-27 19:28:16 +0200
commitc4fbb99cee30fa295e240b429b2dc7e8ad83d535 (patch)
treee382956cf34eade40b62ece2e77f34f0a6696ad8 /cgit.c
parentmanpage: fix sorting order (diff)
downloadcgit-c4fbb99cee30fa295e240b429b2dc7e8ad83d535.tar.xz
cgit-c4fbb99cee30fa295e240b429b2dc7e8ad83d535.zip
Use string list strdup_strings for mimetypes
There's no need to do this manually with the string list API will do it for us. Signed-off-by: John Keeping <john@keeping.me.uk>
Diffstat (limited to 'cgit.c')
-rw-r--r--cgit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cgit.c b/cgit.c
index 223dfc8..0c9f3e9 100644
--- a/cgit.c
+++ b/cgit.c
@@ -23,7 +23,7 @@ static void add_mimetype(const char *name, const char *value)
{
struct string_list_item *item;
- item = string_list_insert(&ctx.cfg.mimetypes, xstrdup(name));
+ item = string_list_insert(&ctx.cfg.mimetypes, name);
item->util = xstrdup(value);
}
@@ -414,7 +414,7 @@ static void prepare_context(void)
ctx.page.modified = time(NULL);
ctx.page.expires = ctx.page.modified;
ctx.page.etag = NULL;
- memset(&ctx.cfg.mimetypes, 0, sizeof(struct string_list));
+ string_list_init(&ctx.cfg.mimetypes, 1);
if (ctx.env.script_name)
ctx.cfg.script_name = xstrdup(ctx.env.script_name);
if (ctx.env.query_string)