Re: [PATCH v12 0/3] MR414: fltmgr.sys: Implement FltBuildDefaultSecurityDescriptor
16 Mar
2024
16 Mar
'24
11:20 p.m.
Zebediah Figura (@zfigura) commented about dlls/ntoskrnl.exe/tests/driver.c:
+ PSID group = NULL, owner = NULL; + BOOLEAN isdefault, present; + PACL acl = NULL; + PACCESS_ALLOWED_ACE ace; + SID_IDENTIFIER_AUTHORITY auth = { SECURITY_NULL_SID_AUTHORITY }; + SID_IDENTIFIER_AUTHORITY authwine7 = { SECURITY_NT_AUTHORITY }; + PSID sid1, sid2, sidwin7; + BOOL ret; + + status = FltBuildDefaultSecurityDescriptor(&sd, STANDARD_RIGHTS_ALL); + ok(status == STATUS_SUCCESS, "got %#lx\n", status); + if (status != STATUS_SUCCESS) + { + win_skip("Skipping FltBuildDefaultSecurityDescriptor tests\n"); + return; + } Do we need this?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/414#note_65053
640
Age (days ago)
640
Last active (days ago)
0 comments
1 participants
participants (1)
-
Zebediah Figura (@zfigura)