winehq.org
Sign In
Sign Up
Sign In
Sign Up
Manage this list
×
Keyboard Shortcuts
Thread View
j
: Next unread message
k
: Previous unread message
j a
: Jump to all threads
j l
: Jump to MailingList overview
2025
October
September
August
July
June
May
April
March
February
January
2024
December
November
October
September
August
July
June
May
April
March
February
January
2023
December
November
October
September
August
July
June
May
April
March
February
January
2022
December
November
October
September
August
July
List overview
wine-gitlab
March 2024
----- 2025 -----
October 2025
September 2025
August 2025
July 2025
June 2025
May 2025
April 2025
March 2025
February 2025
January 2025
----- 2024 -----
December 2024
November 2024
October 2024
September 2024
August 2024
July 2024
June 2024
May 2024
April 2024
March 2024
February 2024
January 2024
----- 2023 -----
December 2023
November 2023
October 2023
September 2023
August 2023
July 2023
June 2023
May 2023
April 2023
March 2023
February 2023
January 2023
----- 2022 -----
December 2022
November 2022
October 2022
September 2022
August 2022
July 2022
wine-gitlab@winehq.org
3 participants
1173 discussions
Start a n
N
ew thread
Re: [PATCH v4 0/1] MR1060: include: Remove interfaces already define in msxml6.idl
by Alistair Leslie-Hughes (@alesliehughes)
16 Mar '24
16 Mar '24
First brings the headers inline with the SDK. Second allows you to build against the wine headers without getting a link time GUID duplicates. --
https://gitlab.winehq.org/wine/wine/-/merge_requests/1060#note_65056
1
0
0
0
Re: [PATCH v12 0/3] MR414: fltmgr.sys: Implement FltBuildDefaultSecurityDescriptor
by Zebediah Figura (@zfigura)
16 Mar '24
16 Mar '24
Zebediah Figura (@zfigura) commented about dlls/ntoskrnl.exe/tests/driver.c: > + *RtlSubAuthoritySid(sidwin7, 1) = DOMAIN_ALIAS_RID_ADMINS; > + > + sid2 = ExAllocatePool(NonPagedPool, RtlLengthRequiredSid(1)); > + RtlInitializeSid(sid2, &auth, 1); > + *RtlSubAuthoritySid(sid2, 0) = SECURITY_LOCAL_SYSTEM_RID; > + > + /* SECURITY_BUILTIN_DOMAIN_RID */ > + status = RtlGetAce(acl, 0, (void**)&ace); > + ok(status == STATUS_SUCCESS, "got %#lx\n", status); > + > + ok(ace->Header.AceType == ACCESS_ALLOWED_ACE_TYPE, "got %#x\n", ace->Header.AceType); > + ok(ace->Header.AceFlags == 0, "got %#x\n", ace->Header.AceFlags); > + ok(ace->Mask == STANDARD_RIGHTS_ALL, "got %#lx\n", ace->Mask); > + > + ret = RtlEqualSid(sid1, (PSID)&ace->SidStart) || RtlEqualSid(sidwin7, (PSID)&ace->SidStart); > + ok(ret, "SID not equal\n"); Maybe it'd be a bit simpler to test the SID elements individually rather than constructing a SID and using RtlEqualSid()? --
https://gitlab.winehq.org/wine/wine/-/merge_requests/414#note_65055
1
0
0
0
Re: [PATCH v12 0/3] MR414: fltmgr.sys: Implement FltBuildDefaultSecurityDescriptor
by Zebediah Figura (@zfigura)
16 Mar '24
16 Mar '24
Zebediah Figura (@zfigura) commented about dlls/ntoskrnl.exe/tests/driver.c: > + } > + ok(sd != NULL, "Failed to return descriptor\n"); > + > + status = RtlGetGroupSecurityDescriptor(sd, &group, &isdefault); > + ok(status == STATUS_SUCCESS, "got %#lx\n", status); > + ok(group == NULL, "group isn't NULL\n"); > + > + status = RtlGetOwnerSecurityDescriptor(sd, &owner, &isdefault); > + ok(status == STATUS_SUCCESS, "got %#lx\n", status); > + ok(owner == NULL, "owner isn't NULL\n"); > + > + status = RtlGetDaclSecurityDescriptor(sd, &present, &acl, &isdefault); > + ok(status == STATUS_SUCCESS, "got %#lx\n", status); > + ok(acl != NULL, "acl is NULL\n"); > + ok(acl->AceCount == 2, "got %d\n", acl->AceCount); > + Should we test "isdefault" here as well? --
https://gitlab.winehq.org/wine/wine/-/merge_requests/414#note_65054
1
0
0
0
Re: [PATCH v12 0/3] MR414: fltmgr.sys: Implement FltBuildDefaultSecurityDescriptor
by Zebediah Figura (@zfigura)
16 Mar '24
16 Mar '24
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
1
0
0
0
Re: [PATCH v12 0/3] MR414: fltmgr.sys: Implement FltBuildDefaultSecurityDescriptor
by Zebediah Figura (@zfigura)
16 Mar '24
16 Mar '24
Zebediah Figura (@zfigura) commented about dlls/fltmgr.sys/main.c: > + goto done; > + RtlInitializeSid(sid, &auth, 2); > + sid->SubAuthority[1] = DOMAIN_GROUP_RID_ADMINS; > + sid->SubAuthority[0] = SECURITY_BUILTIN_DOMAIN_RID; > + > + sid_len = RtlLengthRequiredSid(1); > + sid_system = ExAllocatePool(PagedPool, sid_len); > + if (!sid_system) > + goto done; > + RtlInitializeSid(sid_system, &auth, 1); > + sid_system->SubAuthority[0] = SECURITY_LOCAL_SYSTEM_RID; > + > + sid_len = SECURITY_DESCRIPTOR_MIN_LENGTH + sizeof(ACL) + > + sizeof(ACCESS_ALLOWED_ACE) + RtlLengthSid(sid) + > + sizeof(ACCESS_ALLOWED_ACE) + RtlLengthSid(sid_system); > + Maybe rename "sid_len" to "len" if you're going to use it for other things? --
https://gitlab.winehq.org/wine/wine/-/merge_requests/414#note_65052
1
0
0
0
Re: [PATCH v12 0/3] MR414: fltmgr.sys: Implement FltBuildDefaultSecurityDescriptor
by Zebediah Figura (@zfigura)
16 Mar '24
16 Mar '24
Zebediah Figura (@zfigura) commented about dlls/fltmgr.sys/main.c: > > return func; > } > + > +NTSTATUS WINAPI FltBuildDefaultSecurityDescriptor(PSECURITY_DESCRIPTOR *descriptor, ACCESS_MASK access) > +{ > + PACL dacl; > + NTSTATUS ret = STATUS_INSUFFICIENT_RESOURCES; This initialization isn't doing anything. --
https://gitlab.winehq.org/wine/wine/-/merge_requests/414#note_65051
1
0
0
0
Re: [PATCH v4 0/1] MR1060: include: Remove interfaces already define in msxml6.idl
by Nikolay Sivov (@nsivov)
16 Mar '24
16 Mar '24
@alesliehughes could you remind me what this was going to fix? --
https://gitlab.winehq.org/wine/wine/-/merge_requests/1060#note_65050
1
0
0
0
[PATCH 0/1] MR1228: wined3d: support direct3d shader model 1,2,3
by Fan WenJie (@fanwenjie)
16 Mar '24
16 Mar '24
vkd3d_shader_compile_info::source_type can not hard write to VKD3D_SHADER_SOURCE_DXBC_TPF, it is decided by magic number of shader source. --
https://gitlab.winehq.org/wine/wine/-/merge_requests/1228
4
5
0
0
[PATCH 0/1] MR5332: user32/tests: Accept WM_ACTIVATE in TrackPopupMenu.
by Esme Povirk (@madewokherd)
16 Mar '24
16 Mar '24
https://test.winehq.org/data/552cc456d1889ab3ee0dd5ead6c7520c34d030c0/w1121…
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/5332
2
1
0
0
[PATCH v3 0/2] MR5247: user32/msgbox: Support WM_COPY Message
by Alistair Leslie-Hughes (@alesliehughes)
16 Mar '24
16 Mar '24
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=17205
-- v3: user32/msgbox: Use a windows hook to trap Ctrl+C user32/msgbox: Support WM_COPY Message
https://gitlab.winehq.org/wine/wine/-/merge_requests/5247
4
9
0
0
← Newer
1
...
54
55
56
57
58
59
60
...
118
Older →
Jump to page:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
Results per page:
10
25
50
100
200