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
5395e9b8
Commit
5395e9b8
authored
Apr 10, 2012
by
Hugo Beauzée-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
subtitles: Fix subtitles detection.
parent
a7d96e44
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/input/subtitles.c
src/input/subtitles.c
+3
-2
No files found.
src/input/subtitles.c
View file @
5395e9b8
...
@@ -271,14 +271,15 @@ char **subtitles_Detect( input_thread_t *p_this, char *psz_path,
...
@@ -271,14 +271,15 @@ char **subtitles_Detect( input_thread_t *p_this, char *psz_path,
return
NULL
;
return
NULL
;
}
}
c
har
*
f_fname
=
strrchr
(
f_dir
,
DIR_SEP_CHAR
);
c
onst
char
*
f_fname
=
strrchr
(
psz_fname
,
DIR_SEP_CHAR
);
if
(
!
f_fname
)
if
(
!
f_fname
)
{
{
free
(
f_dir
);
free
(
f_dir
);
free
(
psz_fname
);
free
(
psz_fname
);
return
NULL
;
return
NULL
;
}
}
*
(
++
f_fname
)
=
0
;
/* keep dir separator in f_dir */
f_fname
++
;
/* Skip the '/' */
f_dir
[
f_fname
-
psz_fname
]
=
0
;
/* keep dir separator in f_dir */
i_fname_len
=
strlen
(
f_fname
);
i_fname_len
=
strlen
(
f_fname
);
...
...
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