Don't crash when a repo-specific readme file is used
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
这个提交包含在:
父节点
21f67e7d82
当前提交
f2bf0a0528
4
cgit.c
4
cgit.c
@ -68,9 +68,9 @@ void repo_config(struct cgit_repo *repo, const char *name, const char *value)
|
|||||||
repo->section = xstrdup(value);
|
repo->section = xstrdup(value);
|
||||||
else if (!strcmp(name, "readme") && value != NULL) {
|
else if (!strcmp(name, "readme") && value != NULL) {
|
||||||
if (*value == '/')
|
if (*value == '/')
|
||||||
ctx.repo->readme = xstrdup(value);
|
repo->readme = xstrdup(value);
|
||||||
else
|
else
|
||||||
ctx.repo->readme = xstrdup(fmt("%s/%s", ctx.repo->path, value));
|
repo->readme = xstrdup(fmt("%s/%s", repo->path, value));
|
||||||
} else if (ctx.cfg.enable_filter_overrides) {
|
} else if (ctx.cfg.enable_filter_overrides) {
|
||||||
if (!strcmp(name, "about-filter"))
|
if (!strcmp(name, "about-filter"))
|
||||||
repo->about_filter = new_filter(value, 0);
|
repo->about_filter = new_filter(value, 0);
|
||||||
|
正在加载...
在新工单中引用
屏蔽一个用户