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
7a6a5001
Commit
7a6a5001
authored
Sep 18, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use stat properly (you don't want to open directories or devices...)
parent
7615bbd6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
src/input/input.c
src/input/input.c
+3
-4
No files found.
src/input/input.c
View file @
7a6a5001
...
@@ -2643,9 +2643,8 @@ static char *InputGetExtraFiles( input_thread_t *p_input,
...
@@ -2643,9 +2643,8 @@ static char *InputGetExtraFiles( input_thread_t *p_input,
snprintf
(
psz_ext
,
5
,
".%.3d"
,
i
);
snprintf
(
psz_ext
,
5
,
".%.3d"
,
i
);
if
(
utf8_stat
(
psz_file
,
&
st
)
!=
0
)
if
(
utf8_stat
(
psz_file
,
&
st
)
break
;
||
!
S_ISREG
(
st
.
st_mode
)
||
!
st
.
st_size
)
if
(
st
.
st_size
<=
0
)
continue
;
continue
;
msg_Dbg
(
p_input
,
"Detected extra file `%s'"
,
psz_file
);
msg_Dbg
(
p_input
,
"Detected extra file `%s'"
,
psz_file
);
...
@@ -2993,7 +2992,7 @@ static void SubtitleAdd( input_thread_t *p_input, char *psz_subtitle, bool b_for
...
@@ -2993,7 +2992,7 @@ static void SubtitleAdd( input_thread_t *p_input, char *psz_subtitle, bool b_for
strcpy
(
psz_extension
,
".idx"
);
strcpy
(
psz_extension
,
".idx"
);
if
(
!
utf8_stat
(
psz_path
,
&
st
)
)
if
(
!
utf8_stat
(
psz_path
,
&
st
)
&&
S_ISREG
(
st
.
st_mode
)
)
{
{
msg_Dbg
(
p_input
,
"using %s subtitles file instead of %s"
,
msg_Dbg
(
p_input
,
"using %s subtitles file instead of %s"
,
psz_path
,
psz_subtitle
);
psz_path
,
psz_subtitle
);
...
...
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