]> sourceware.org Git - newlib-cygwin.git/commitdiff
* fhandler_disk_file.cc (path_conv::ndisk_links): Fix typo in call to
authorCorinna Vinschen <corinna@vinschen.de>
Thu, 2 Aug 2007 10:22:30 +0000 (10:22 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Thu, 2 Aug 2007 10:22:30 +0000 (10:22 +0000)
NtClose.

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

index 7cd946d4c48bbd654788ad953c71580f9b2c9ef1..5c511e21c38ed59427590a06789f4d362373f6c9 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 b61c12f6f513770ce01ddfe994ed3cbbefe50cd6..45dee518bc0ad744bd930d012e0236fe7a31ea53 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;
 }
This page took 0.036345 seconds and 5 git commands to generate.