Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
f81778e9
Commit
f81778e9
authored
Oct 31, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix Windows build
parent
bb24808c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
modules/access/file.c
modules/access/file.c
+5
-5
No files found.
modules/access/file.c
View file @
f81778e9
...
...
@@ -108,7 +108,7 @@ static int Seek( access_t *, int64_t );
static
int
Read
(
access_t
*
,
uint8_t
*
,
int
);
static
int
Control
(
access_t
*
,
int
,
va_list
);
static
int
OpenF
ile
(
access_t
*
,
const
char
*
);
static
int
open_f
ile
(
access_t
*
,
const
char
*
);
struct
access_sys_t
{
...
...
@@ -213,7 +213,7 @@ static int Open( vlc_object_t *p_this )
if
(
b_stdin
)
fd
=
dup
(
0
);
else
fd
=
OpenF
ile
(
p_access
,
p_access
->
psz_path
);
fd
=
open_f
ile
(
p_access
,
p_access
->
psz_path
);
}
else
{
...
...
@@ -224,7 +224,7 @@ static int Open( vlc_object_t *p_this )
*
ptr
=
0
;
msg_Dbg
(
p_access
,
"opening additionnal file `%s'"
,
filename
);
fd
=
OpenF
ile
(
p_access
,
filename
);
fd
=
open_f
ile
(
p_access
,
filename
);
filename
=
ptr
+
1
;
}
...
...
@@ -513,9 +513,9 @@ static char *expand_path (const access_t *p_access, const char *path)
/*****************************************************************************
*
OpenF
ile: Opens a specific file
*
open_f
ile: Opens a specific file
*****************************************************************************/
static
int
OpenF
ile
(
access_t
*
p_access
,
const
char
*
psz_name
)
static
int
open_f
ile
(
access_t
*
p_access
,
const
char
*
psz_name
)
{
char
*
path
=
expand_path
(
p_access
,
psz_name
);
...
...
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