Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
3328bef8
Commit
3328bef8
authored
Dec 10, 2001
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed possible segfault with --input.
parent
9caec944
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
8 deletions
+11
-8
src/input/input.c
src/input/input.c
+11
-8
No files found.
src/input/input.c
View file @
3328bef8
...
...
@@ -4,7 +4,7 @@
* decoders.
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* $Id: input.c,v 1.16
3
2001/12/
07 18:33:08 sam
Exp $
* $Id: input.c,v 1.16
4
2001/12/
10 16:16:51 massiot
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -459,24 +459,27 @@ static int InitThread( input_thread_t * p_input )
}
else
#endif
if
(
(
(
strlen
(
p_input
->
p_source
)
>
4
)
&&
!
strncasecmp
(
p_input
->
p_source
,
"dvd:"
,
4
)
)
||
TestMethod
(
INPUT_METHOD_VAR
,
"dvd"
)
)
if
(
(
(
(
strlen
(
p_input
->
p_source
)
>
4
)
&&
!
strncasecmp
(
p_input
->
p_source
,
"dvd:"
,
4
)
)
||
TestMethod
(
INPUT_METHOD_VAR
,
"dvd"
)
)
&&
f
.
pf_open
!=
NULL
)
{
/* DVD - this is THE kludge */
f
.
pf_open
(
p_input
);
p_input
->
stream
.
i_method
=
INPUT_METHOD_DVD
;
}
else
if
(
(
(
strlen
(
p_input
->
p_source
)
>
8
)
&&
!
strncasecmp
(
p_input
->
p_source
,
"dvdread:"
,
8
)
)
||
TestMethod
(
INPUT_METHOD_VAR
,
"dvdread"
)
)
else
if
(
(
(
(
strlen
(
p_input
->
p_source
)
>
8
)
&&
!
strncasecmp
(
p_input
->
p_source
,
"dvdread:"
,
8
)
)
||
TestMethod
(
INPUT_METHOD_VAR
,
"dvdread"
)
)
&&
f
.
pf_open
!=
NULL
)
{
/* DVDRead - this is THE kludge */
f
.
pf_open
(
p_input
);
p_input
->
stream
.
i_method
=
INPUT_METHOD_DVD
;
}
else
if
(
(
strlen
(
p_input
->
p_source
)
>
4
)
&&
!
strncasecmp
(
p_input
->
p_source
,
"vlc:"
,
4
)
)
&&
!
strncasecmp
(
p_input
->
p_source
,
"vlc:"
,
4
)
&&
f
.
pf_open
!=
NULL
)
{
/* Dummy input - very kludgy */
f
.
pf_open
(
p_input
);
...
...
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