mirror of
https://git.zx2c4.com/cgit
synced 2024-11-08 09:38:41 +00:00
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>
This commit is contained in:
parent
9086260329
commit
c4fbb99cee
4
cgit.c
4
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)
|
||||
|
Loading…
Reference in New Issue
Block a user