cgit

commit f2bf0a05280edddb4961214adfd7b440191737e2

Author: Sami Kyöstilä <sami.kyostila@gmail.com>

Don't crash when a repo-specific readme file is used

Signed-off-by: Lars Hjemli <hjemli@gmail.com>

 cgit.c | 4 ++--


diff --git a/cgit.c b/cgit.c
index bd377881f669d44634767489dfb276dce3308426..6bb712de0d3d6548fa34174fbb2d2cf61c5078fc 100644
--- a/cgit.c
+++ b/cgit.c
@@ -68,9 +68,9 @@ 	else if (!strcmp(name, "section"))
 		repo->section = xstrdup(value);
 	else if (!strcmp(name, "readme") && value != NULL) {
 		if (*value == '/')
-			ctx.repo->readme = xstrdup(value);
+			repo->readme = xstrdup(value);
 		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) {
 		if (!strcmp(name, "about-filter"))
 			repo->about_filter = new_filter(value, 0);