* fhandler.cc (fhandler_base::open): Fix bug in argument order to

InitializeObjectAttributes call.
This commit is contained in:
Corinna Vinschen 2006-01-26 16:58:53 +00:00
parent 2ceb32d95a
commit 50a7955aa6
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-01-26 Corinna Vinschen <corinna@vinschen.de>
* fhandler.cc (fhandler_base::open): Fix bug in argument order to
InitializeObjectAttributes call.
2006-01-25 Corinna Vinschen <corinna@vinschen.de>
* fhandler_disk_file.cc (fhandler_disk_file::readdir): Fix test for

View File

@ -581,7 +581,7 @@ fhandler_base::open (int flags, mode_t mode)
syscall_printf ("(%s, %p)", get_win32_name (), flags);
InitializeObjectAttributes (&attr, &upath, OBJ_CASE_INSENSITIVE | OBJ_INHERIT,
sa.lpSecurityDescriptor, NULL);
NULL, sa.lpSecurityDescriptor);
switch (query_open ())
{