Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
04b1e7b2
Commit
04b1e7b2
authored
Oct 19, 2009
by
Marian Ďurkovič
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dvdnav: Remove trailing backslash on Win32
parent
92f73e2a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
modules/access/dvdnav.c
modules/access/dvdnav.c
+5
-2
No files found.
modules/access/dvdnav.c
View file @
04b1e7b2
...
...
@@ -199,8 +199,11 @@ static int Open( vlc_object_t *p_this )
psz_name
=
ToLocaleDup
(
p_demux
->
psz_path
);
#ifdef WIN32
if
(
psz_name
[
0
]
&&
psz_name
[
1
]
==
':'
&&
psz_name
[
2
]
==
'\\'
&&
psz_name
[
3
]
==
'\0'
)
psz_name
[
2
]
=
'\0'
;
/* Remove trailing backslash, otherwise dvdnav_open will fail */
if
(
*
psz_name
&&
*
(
psz_name
+
strlen
(
psz_name
)
-
1
)
==
'\\'
)
{
*
(
psz_name
+
strlen
(
psz_name
)
-
1
)
=
'\0'
;
}
#endif
/* Try some simple probing to avoid going through dvdnav_open too often */
...
...
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