Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
ac79e160
Commit
ac79e160
authored
Apr 07, 2014
by
Huw Davies
Committed by
Alexandre Julliard
Apr 07, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: For Android look in /proc/mounts for mounted file systems.
parent
2139df00
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
directory.c
dlls/ntdll/directory.c
+12
-0
No files found.
dlls/ntdll/directory.c
View file @
ac79e160
...
...
@@ -685,6 +685,13 @@ static char *get_default_drive_device( const char *root )
RtlEnterCriticalSection
(
&
dir_section
);
#ifdef __ANDROID__
if
((
f
=
fopen
(
"/proc/mounts"
,
"r"
)))
{
device
=
parse_mount_entries
(
f
,
st
.
st_dev
,
st
.
st_ino
);
fclose
(
f
);
}
#else
if
((
f
=
fopen
(
"/etc/mtab"
,
"r"
)))
{
device
=
parse_mount_entries
(
f
,
st
.
st_dev
,
st
.
st_ino
);
...
...
@@ -696,6 +703,7 @@ static char *get_default_drive_device( const char *root )
device
=
parse_mount_entries
(
f
,
st
.
st_dev
,
st
.
st_ino
);
fclose
(
f
);
}
#endif
if
(
device
)
{
ret
=
RtlAllocateHeap
(
GetProcessHeap
(),
0
,
strlen
(
device
)
+
1
);
...
...
@@ -827,7 +835,11 @@ static char *get_device_mount_point( dev_t dev )
RtlEnterCriticalSection
(
&
dir_section
);
#ifdef __ANDROID__
if
((
f
=
fopen
(
"/proc/mounts"
,
"r"
)))
#else
if
((
f
=
fopen
(
"/etc/mtab"
,
"r"
)))
#endif
{
struct
mntent
*
entry
;
struct
stat
st
;
...
...
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