Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
Icecast-Server
Commits
4e7434c7
Commit
4e7434c7
authored
Oct 14, 2012
by
Philipp Schafft
🦁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
corrected coding style
svn path=/icecast/trunk/icecast/; revision=18666
parent
2b40660a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/source.c
src/source.c
+2
-2
No files found.
src/source.c
View file @
4e7434c7
...
...
@@ -1359,13 +1359,13 @@ static void *source_fallback_file (void *arg)
{
if
(
mount
==
NULL
||
mount
[
0
]
!=
'/'
)
break
;
config
=
config_get_config
();
config
=
config_get_config
();
len
=
strlen
(
config
->
webroot_dir
)
+
strlen
(
mount
)
+
1
;
path
=
malloc
(
len
);
if
(
path
)
snprintf
(
path
,
len
,
"%s%s"
,
config
->
webroot_dir
,
mount
);
config_release_config
();
if
(
path
==
NULL
)
break
;
...
...
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