Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
581cef08
Commit
581cef08
authored
Jul 29, 2013
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Use fclose instead of endmntent since we use fopen anyway.
parent
ca7ba705
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
directory.c
dlls/ntdll/directory.c
+3
-3
No files found.
dlls/ntdll/directory.c
View file @
581cef08
...
...
@@ -586,13 +586,13 @@ static char *get_default_drive_device( const char *root )
if
((
f
=
fopen
(
"/etc/mtab"
,
"r"
)))
{
device
=
parse_mount_entries
(
f
,
st
.
st_dev
,
st
.
st_ino
);
endmntent
(
f
);
fclose
(
f
);
}
/* look through fstab too in case it's not mounted (for instance if it's an audio CD) */
if
(
!
device
&&
(
f
=
fopen
(
"/etc/fstab"
,
"r"
)))
{
device
=
parse_mount_entries
(
f
,
st
.
st_dev
,
st
.
st_ino
);
endmntent
(
f
);
fclose
(
f
);
}
if
(
device
)
{
...
...
@@ -764,7 +764,7 @@ static char *get_device_mount_point( dev_t dev )
break
;
}
}
endmntent
(
f
);
fclose
(
f
);
}
RtlLeaveCriticalSection
(
&
dir_section
);
#elif defined(__APPLE__)
...
...
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