From eb66a682c01ffabad8842507732157cd88437664 Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Thu, 11 Oct 2018 11:04:46 +0000 Subject: [PATCH] Revert "Fix: Corrected use of XMLSTR()" This reverts commit fd2556b4c04b98f5ce2c8a2280cc6878cfae4e19. See libxml2's 4472c3a5a5b516aaf59b89be602fbce52756c3e9. --- src/xslt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xslt.c b/src/xslt.c index aa4e1ec5..d8fb4454 100644 --- a/src/xslt.c +++ b/src/xslt.c @@ -280,7 +280,7 @@ static xmlDocPtr custom_loader(const xmlChar *URI, /* Append path separator to path */ size_t len = strlen(config->adminroot_dir); xmlChar* admin_path = xmlMalloc(len+2); - xmlStrPrintf(admin_path, len+2, XMLSTR("%s/"), XMLSTR(config->adminroot_dir)); + xmlStrPrintf(admin_path, len+2, "%s/", XMLSTR(config->adminroot_dir)); /* Convert admin path to URI */ admin_URI = xmlPathToURI(admin_path);