* fhandler.cc (fhandler_base::open): Remove unused variables sa and sd.
This commit is contained in:
parent
1647bf67c1
commit
e83fef9d35
@ -1,3 +1,7 @@
|
|||||||
|
2009-10-24 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* fhandler.cc (fhandler_base::open): Remove unused variables sa and sd.
|
||||||
|
|
||||||
2009-10-23 Corinna Vinschen <corinna@vinschen.de>
|
2009-10-23 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* fhandler.cc (fhandler_base::open): Always create file with default
|
* fhandler.cc (fhandler_base::open): Always create file with default
|
||||||
|
@ -461,8 +461,6 @@ fhandler_base::open (int flags, mode_t mode)
|
|||||||
ULONG shared = (get_major () == DEV_TAPE_MAJOR ? 0 : FILE_SHARE_VALID_FLAGS);
|
ULONG shared = (get_major () == DEV_TAPE_MAJOR ? 0 : FILE_SHARE_VALID_FLAGS);
|
||||||
ULONG create_disposition;
|
ULONG create_disposition;
|
||||||
ULONG create_options = FILE_OPEN_FOR_BACKUP_INTENT;
|
ULONG create_options = FILE_OPEN_FOR_BACKUP_INTENT;
|
||||||
SECURITY_ATTRIBUTES sa = sec_none;
|
|
||||||
security_descriptor sd;
|
|
||||||
OBJECT_ATTRIBUTES attr;
|
OBJECT_ATTRIBUTES attr;
|
||||||
IO_STATUS_BLOCK io;
|
IO_STATUS_BLOCK io;
|
||||||
NTSTATUS status;
|
NTSTATUS status;
|
||||||
@ -471,7 +469,7 @@ fhandler_base::open (int flags, mode_t mode)
|
|||||||
|
|
||||||
syscall_printf ("(%S, %p)", pc.get_nt_native_path (), flags);
|
syscall_printf ("(%S, %p)", pc.get_nt_native_path (), flags);
|
||||||
|
|
||||||
pc.get_object_attr (attr, sa);
|
pc.get_object_attr (attr, sec_none);
|
||||||
|
|
||||||
switch (query_open ())
|
switch (query_open ())
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user