aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Keeping <john@keeping.me.uk>2015-10-08 23:23:56 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2015-10-09 10:54:19 +0200
commit94182d6031df0d956a94ecd7ece233e345468961 (patch)
treea3c8a484c5120038444175aa085006b39ee030f6
parentgit: update to v2.6.1 (diff)
downloadcgit-94182d6031df0d956a94ecd7ece233e345468961.tar.xz
cgit-94182d6031df0d956a94ecd7ece233e345468961.zip
cgit.c: remove useless null check
Everywhere else in this function we do not check whether the value is null and parse_configfile() never passes a null value to this callback. Coverity-id: 13846 Signed-off-by: John Keeping <john@keeping.me.uk>
Diffstat (limited to '')
-rw-r--r--cgit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgit.c b/cgit.c
index 28a2f14..5937b9e 100644
--- a/cgit.c
+++ b/cgit.c
@@ -110,7 +110,7 @@ static void config_cb(const char *name, const char *value)
ctx.repo->path = trim_end(value, '/');
else if (ctx.repo && starts_with(name, "repo."))
repo_config(ctx.repo, name + 5, value);
- else if (!strcmp(name, "readme") && value != NULL)
+ else if (!strcmp(name, "readme"))
string_list_append(&ctx.cfg.readme, xstrdup(value));
else if (!strcmp(name, "root-title"))
ctx.cfg.root_title = xstrdup(value);