Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
Icecast-Server
Commits
95105687
Commit
95105687
authored
Jun 07, 2012
by
Philipp Schafft
🦁
Browse files
consider backticks as well as backslashes invalid chars
svn path=/icecast/trunk/log/; revision=18361
parent
ddbce356
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/log/log.c
View file @
95105687
...
...
@@ -518,7 +518,7 @@ static void __vsnprintf(char *str, size_t size, const char *format, va_list ap)
{
for
(;
*
arg
&&
block_len
&&
size
;
arg
++
,
size
--
)
{
if
(
*
arg
<=
'"'
)
if
(
*
arg
<=
'"'
||
*
arg
==
'`'
||
*
arg
==
'\\'
)
*
(
str
++
)
=
'.'
;
else
*
(
str
++
)
=
*
arg
;
...
...
Write
Preview
Supports
Markdown
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