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
21e4928a
Commit
21e4928a
authored
Jun 03, 2012
by
Sam Lade
Committed by
Jean-Baptiste Kempf
Jun 03, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bluray: fix playback when device is a symlink
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
fc55e4a1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
modules/access/bluray.c
modules/access/bluray.c
+4
-1
No files found.
modules/access/bluray.c
View file @
21e4928a
...
...
@@ -194,8 +194,11 @@ static int blurayOpen( vlc_object_t *object )
struct
mntent
*
m
;
struct
mntent
mbuf
;
char
buf
[
8192
];
/* bd_path may be a symlink (e.g. /dev/dvd -> /dev/sr0), so make
* sure we look up the real device */
char
*
bd_device
=
realpath
(
bd_path
,
NULL
);
while
((
m
=
getmntent_r
(
mtab
,
&
mbuf
,
buf
,
sizeof
(
buf
)))
!=
NULL
)
{
if
(
!
strcmp
(
m
->
mnt_fsname
,
bd_
path
))
{
if
(
!
strcmp
(
m
->
mnt_fsname
,
bd_
device
))
{
strncpy
(
bd_path
,
m
->
mnt_dir
,
sizeof
(
bd_path
));
bd_path
[
sizeof
(
bd_path
)
-
1
]
=
'\0'
;
break
;
...
...
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