aboutsummaryrefslogtreecommitdiffstats
path: root/cgit.c
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2010-09-27 07:58:01 +0200
committerLars Hjemli <hjemli@gmail.com>2010-09-27 07:58:13 +0200
commit82a883ede7e47616aba041a5eb36e08666ef9177 (patch)
tree14acc2bad5ca5375aa08cb946788b6923d72df7c /cgit.c
parentRSS items should always use UTC times (diff)
downloadcgit-82a883ede7e47616aba041a5eb36e08666ef9177.tar.xz
cgit-82a883ede7e47616aba041a5eb36e08666ef9177.zip
Use GIT-1.7.3
This fixes http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2542. Noticed-by: Silvio Cesare <silvio.cesare@gmail.com> Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cgit.c')
-rw-r--r--cgit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgit.c b/cgit.c
index 6c7e811..ad62d10 100644
--- a/cgit.c
+++ b/cgit.c
@@ -21,7 +21,7 @@ void add_mimetype(const char *name, const char *value)
{
struct string_list_item *item;
- item = string_list_insert(xstrdup(name), &ctx.cfg.mimetypes);
+ item = string_list_insert(&ctx.cfg.mimetypes, xstrdup(name));
item->util = xstrdup(value);
}