revert accidental checkin
This commit is contained in:
parent
604ca5fa17
commit
1633289656
@ -531,9 +531,7 @@ done:
|
|||||||
int
|
int
|
||||||
fhandler_base::open (int flags, mode_t mode)
|
fhandler_base::open (int flags, mode_t mode)
|
||||||
{
|
{
|
||||||
UNICODE_STRING upath;
|
if (!wincap.is_winnt ())
|
||||||
WCHAR wpath[CYG_MAX_PATH + 10];
|
|
||||||
if (!wincap.is_winnt () || RtlIsDosDeviceName_U(wpath))
|
|
||||||
return fhandler_base::open_9x (flags, mode);
|
return fhandler_base::open_9x (flags, mode);
|
||||||
|
|
||||||
int res = 0;
|
int res = 0;
|
||||||
@ -544,6 +542,8 @@ fhandler_base::open (int flags, mode_t mode)
|
|||||||
ULONG create_options;
|
ULONG create_options;
|
||||||
SECURITY_ATTRIBUTES sa = sec_none;
|
SECURITY_ATTRIBUTES sa = sec_none;
|
||||||
security_descriptor sd;
|
security_descriptor sd;
|
||||||
|
UNICODE_STRING upath;
|
||||||
|
WCHAR wpath[CYG_MAX_PATH + 10];
|
||||||
OBJECT_ATTRIBUTES attr;
|
OBJECT_ATTRIBUTES attr;
|
||||||
IO_STATUS_BLOCK io;
|
IO_STATUS_BLOCK io;
|
||||||
NTSTATUS status;
|
NTSTATUS status;
|
||||||
@ -555,7 +555,8 @@ fhandler_base::open (int flags, mode_t mode)
|
|||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
|
|
||||||
InitializeObjectAttributes (&attr, &upath, OBJ_CASE_INSENSITIVE | OBJ_INHERIT,
|
InitializeObjectAttributes (&attr, pc.get_nt_native_path (upath, wpath),
|
||||||
|
OBJ_CASE_INSENSITIVE | OBJ_INHERIT,
|
||||||
sa.lpSecurityDescriptor, NULL);
|
sa.lpSecurityDescriptor, NULL);
|
||||||
|
|
||||||
switch (query_open ())
|
switch (query_open ())
|
||||||
|
Loading…
x
Reference in New Issue
Block a user