Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
spr0cketeer
Icecast-Server
Commits
fd2556b4
Commit
fd2556b4
authored
Jul 09, 2018
by
Philipp Schafft
🦁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix: Corrected use of XMLSTR()
parent
449c9559
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/xslt.c
src/xslt.c
+1
-1
No files found.
src/xslt.c
View file @
fd2556b4
...
...
@@ -279,7 +279,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
,
"%s/"
,
XMLSTR
(
config
->
adminroot_dir
));
xmlStrPrintf
(
admin_path
,
len
+
2
,
XMLSTR
(
"%s/"
)
,
XMLSTR
(
config
->
adminroot_dir
));
/* Convert admin path to URI */
admin_URI
=
xmlPathToURI
(
admin_path
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment