Module: wine Branch: master Commit: 581cef082e903059a28dab98f3b53c9498287e5f URL: http://source.winehq.org/git/wine.git/?a=commit;h=581cef082e903059a28dab98f3...
Author: Alexandre Julliard julliard@winehq.org Date: Mon Jul 29 21:07:12 2013 +0200
ntdll: Use fclose instead of endmntent since we use fopen anyway.
---
dlls/ntdll/directory.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/ntdll/directory.c b/dlls/ntdll/directory.c index 1a84537..cf89879 100644 --- a/dlls/ntdll/directory.c +++ b/dlls/ntdll/directory.c @@ -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__)