From 4fc86a0679d5d70b1a3944b26294c376b5f63abe Mon Sep 17 00:00:00 2001 From: simon Date: Mon, 25 Jul 2011 18:18:52 +0000 Subject: [PATCH] Fix assertion failure in standalone --html mode, which I must have introduced when I revamped the HTML relative-URI handling. git-svn-id: svn://svn.tartarus.org/sgt/agedu@9248 cda61777-01e9-0310-a592-d414129be87e --- html.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html.c b/html.c index 7f82f39..8233993 100644 --- a/html.c +++ b/html.c @@ -869,7 +869,10 @@ char *html_query(const void *t, unsigned long index, path = snewn(1+trie_maxpathlen(t), char); ctx->path2 = path2 = snewn(1+trie_maxpathlen(t), char); - ctx->oururi = format_string(cfg->uriformat, index, t); + if (cfg->uriformat) + ctx->oururi = format_string(cfg->uriformat, index, t); + else + ctx->oururi = NULL; /* * HEAD section. -- 2.11.0