OSDN Git Service

* fhandler_disk_file.cc (path_conv::ndisk_links): Fix typo in call to
authorcorinna <corinna>
Thu, 2 Aug 2007 10:22:28 +0000 (10:22 +0000)
committercorinna <corinna>
Thu, 2 Aug 2007 10:22:28 +0000 (10:22 +0000)
NtClose.

winsup/cygwin/ChangeLog
winsup/cygwin/fhandler_disk_file.cc

index 7cd946d..5c511e2 100644 (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
index b61c12f..45dee51 100644 (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;
 }