4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-18 12:29:32 +08:00

* fhandler_disk_file.cc (path_conv::ndisk_links): Fix typo in call to

NtClose.
This commit is contained in:
Corinna Vinschen 2007-08-02 10:22:30 +00:00
parent f86258b5c1
commit b6c2b7cc73
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2007-08-02 Corinna Vinschen <corinna@vinschen.de>
* fhandler_disk_file.cc (path_conv::ndisk_links): Fix typo in call to
NtClose.
2007-08-01 Corinna Vinschen <corinna@vinschen.de>
* syscalls.cc (rename): Check if oldpath and newpath refer to the

View File

@ -242,7 +242,7 @@ path_conv::ndisk_links (DWORD nNumberOfLinks)
}
while (dir->check_missing_mount ())
++count;
NtClose (dir);
NtClose (fh);
delete dir;
return count;
}