diff options
author | Lars Hjemli <hjemli@gmail.com> | 2010-09-27 07:58:01 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2010-09-27 07:58:13 +0200 |
commit | 82a883ede7e47616aba041a5eb36e08666ef9177 (patch) | |
tree | 14acc2bad5ca5375aa08cb946788b6923d72df7c /cgit.c | |
parent | RSS items should always use UTC times (diff) | |
download | cgit-pink-82a883ede7e47616aba041a5eb36e08666ef9177.tar.gz cgit-pink-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 '')
-rw-r--r-- | cgit.c | 2 |
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); } |