Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
d93b7a36
Commit
d93b7a36
authored
Jan 11, 2008
by
Konstantin Pavlov
Browse files
Fix warning
parent
3c0a294d
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/access/rtsp/real_sdpplin.c
View file @
d93b7a36
...
@@ -95,7 +95,7 @@ static int filter(const char *in, const char *filter, char **out) {
...
@@ -95,7 +95,7 @@ static int filter(const char *in, const char *filter, char **out) {
if
(
!
in
)
return
0
;
if
(
!
in
)
return
0
;
len
=
(
strchr
(
in
,
'\n'
))
?
strchr
(
in
,
'\n'
)
-
in
:
strlen
(
in
);
len
=
(
strchr
(
in
,
'\n'
))
?
(
size_t
)(
strchr
(
in
,
'\n'
)
-
in
)
:
strlen
(
in
);
if
(
!
strncmp
(
in
,
filter
,
flen
))
{
if
(
!
strncmp
(
in
,
filter
,
flen
))
{
if
(
in
[
flen
]
==
'"'
)
flen
++
;
if
(
in
[
flen
]
==
'"'
)
flen
++
;
if
(
in
[
len
-
1
]
==
13
)
len
--
;
if
(
in
[
len
-
1
]
==
13
)
len
--
;
...
...
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