Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2009-10-24 12:40:15 +0400
committerCorinna Vinschen <corinna@vinschen.de>2009-10-24 12:40:15 +0400
commite83fef9d351462b7b5046ae054eb56724d704c30 (patch)
tree753b90930fef78e16fd314f1b24042f728d92fb5 /winsup/cygwin/fhandler.cc
parent1647bf67c146d1e1d7169d1b413afb6a459b9ded (diff)
* fhandler.cc (fhandler_base::open): Remove unused variables sa and sd.
Diffstat (limited to 'winsup/cygwin/fhandler.cc')
-rw-r--r--winsup/cygwin/fhandler.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/winsup/cygwin/fhandler.cc b/winsup/cygwin/fhandler.cc
index 3e6e158c5..c978d005f 100644
--- a/winsup/cygwin/fhandler.cc
+++ b/winsup/cygwin/fhandler.cc
@@ -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 create_disposition;
ULONG create_options = FILE_OPEN_FOR_BACKUP_INTENT;
- SECURITY_ATTRIBUTES sa = sec_none;
- security_descriptor sd;
OBJECT_ATTRIBUTES attr;
IO_STATUS_BLOCK io;
NTSTATUS status;
@@ -471,7 +469,7 @@ fhandler_base::open (int flags, mode_t mode)
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 ())
{