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
537d79a9
Commit
537d79a9
authored
Nov 01, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Revert [17394] which reintroduced TOCTOU issues
- Re-fix directory handling
parent
35998f05
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
21 deletions
+11
-21
modules/access/file.c
modules/access/file.c
+11
-21
No files found.
modules/access/file.c
View file @
537d79a9
...
...
@@ -161,26 +161,8 @@ static int Open( vlc_object_t *p_this )
}
else
{
/* returns early if psz_path is a directory */
#ifdef HAVE_SYS_STAT_H
struct
stat
stat_info
;
if
(
utf8_stat
(
p_access
->
psz_path
,
&
stat_info
)
)
{
msg_Warn
(
p_access
,
"%s: %s"
,
p_access
->
psz_path
,
strerror
(
errno
)
);
return
VLC_EGENERIC
;
}
if
S_ISDIR
(
stat_info
.
st_mode
)
{
msg_Warn
(
p_access
,
"%s is a directory"
,
p_access
->
psz_path
);
return
VLC_EGENERIC
;
}
#endif
p_sys
->
b_seekable
=
VLC_TRUE
;
p_sys
->
b_pace_control
=
VLC_TRUE
;
}
/* Count number of files */
...
...
@@ -249,9 +231,17 @@ static int Open( vlc_object_t *p_this )
#ifdef HAVE_SYS_STAT_H
struct
stat
st
;
if
((
fd
!=
-
1
)
&&
fstat
(
fd
,
&
st
)
)
while
(
fd
!=
-
1
)
{
if
(
fstat
(
fd
,
&
st
))
msg_Err
(
p_access
,
"fstat(%d): %s"
,
fd
,
strerror
(
errno
));
else
if
(
S_ISDIR
(
st
.
st_mode
))
/* The directory plugin takes care of that */
msg_Dbg
(
p_access
,
"file is a directory, aborting"
);
else
break
;
// success
close
(
fd
);
fd
=
-
1
;
}
...
...
@@ -285,7 +275,7 @@ static int Open( vlc_object_t *p_this )
if
(
p_sys
->
b_seekable
&&
!
p_access
->
info
.
i_size
)
{
/* FIXME that's bad because all others access will be probed */
msg_Err
(
p_access
,
"file
%s is empty, aborting"
,
p_access
->
psz_path
);
msg_Err
(
p_access
,
"file
is empty, aborting"
);
Close
(
p_this
);
return
VLC_EGENERIC
;
}
...
...
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