* 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

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