Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
1c2b14a5
Commit
1c2b14a5
authored
Sep 02, 2020
by
Nikolay Sivov
Committed by
Alexandre Julliard
Sep 02, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernelbase: Forward ConvertToAutoInheritPrivateObjectSecurity() to ntdll.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
adfaa938
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
security.c
dlls/kernelbase/security.c
+1
-2
winternl.h
include/winternl.h
+1
-0
No files found.
dlls/kernelbase/security.c
View file @
1c2b14a5
...
...
@@ -900,8 +900,7 @@ BOOL WINAPI ConvertToAutoInheritPrivateObjectSecurity( PSECURITY_DESCRIPTOR pare
GUID
*
type
,
BOOL
is_dir
,
PGENERIC_MAPPING
mapping
)
{
FIXME
(
"%p %p %p %p %d %p - stub
\n
"
,
parent
,
current
,
descr
,
type
,
is_dir
,
mapping
);
return
FALSE
;
return
set_ntstatus
(
RtlConvertToAutoInheritSecurityObject
(
parent
,
current
,
descr
,
type
,
is_dir
,
mapping
));
}
/******************************************************************************
...
...
include/winternl.h
View file @
1c2b14a5
...
...
@@ -3282,6 +3282,7 @@ NTSYSAPI LONG WINAPI RtlCompareUnicodeStrings(const WCHAR*,SIZE_T,const WCH
NTSYSAPI
NTSTATUS
WINAPI
RtlCompressBuffer
(
USHORT
,
PUCHAR
,
ULONG
,
PUCHAR
,
ULONG
,
ULONG
,
PULONG
,
PVOID
);
NTSYSAPI
DWORD
WINAPI
RtlComputeCrc32
(
DWORD
,
const
BYTE
*
,
INT
);
NTSYSAPI
NTSTATUS
WINAPI
RtlConvertSidToUnicodeString
(
PUNICODE_STRING
,
PSID
,
BOOLEAN
);
NTSYSAPI
NTSTATUS
WINAPI
RtlConvertToAutoInheritSecurityObject
(
PSECURITY_DESCRIPTOR
,
PSECURITY_DESCRIPTOR
,
PSECURITY_DESCRIPTOR
*
,
GUID
*
,
BOOL
,
PGENERIC_MAPPING
);
NTSYSAPI
void
WINAPI
RtlCopyLuid
(
PLUID
,
const
LUID
*
);
NTSYSAPI
void
WINAPI
RtlCopyLuidAndAttributesArray
(
ULONG
,
const
LUID_AND_ATTRIBUTES
*
,
PLUID_AND_ATTRIBUTES
);
NTSYSAPI
BOOLEAN
WINAPI
RtlCopySid
(
DWORD
,
PSID
,
PSID
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment