This fixes Amazon Games not launching due to pipe client identity check in https://github.com/dotnet/runtime/blob/371905898f2c036cc30d662e8a6df162a219….
--
v2: server: Use the token owner instead of the token user for default object owner.
advapi32/tests: Test that the token default DACL uses token owner instead of token user.
advapi32/tests: Test that default object group match the token primary group.
advapi32/tests: Test that default object owner match the token owner.
advapi32/tests: Check that each ACE is ACCESS_ALLOWED_ACE in the default DACL.
https://gitlab.winehq.org/wine/wine/-/merge_requests/481
--
v3: mfplat/tests: Merge and reorganize image format tests.
mfplat/buffer: Support YV12, I420 and IYUV image formats.
mfplat/tests: Mark some tests as broken on Win 8 and 10 v1507.
https://gitlab.winehq.org/wine/wine/-/merge_requests/418
This prevents crashes when there is an invalid script
inside a tag property.
Because ParseProcedureText calls release_bytecode without
checking if compile_script failed, "code" is not set, and
this leads to a crash when release_bytecode tries to access it.
To reproduce the bug you can create an html file and create a tag
with a property having invalid JS in it. For example:
```
<script onerror="alert("></script>
```
Then you just open this file with iexplore.
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/489
This is the hidclass/ntoskrnl/setupapi counterpart to !359. As with that merge request, implementing `BusQueryContainerID` in the bus driver is left out and will be addressed in a different MR.
I believe this is useful to expose the Container ID no matter how those end up being assigned by the bus driver.
--
v9: ntoskrnl: Set device ContainerID from driver
hidclass: Expose ContainerID
hidclass: Copy device ContainerID to child devices
hidclass: Copy ContainerID from underlying driver in driver_add_device
hidclass: Improve error handling in get_device_id
ntoskrnl/tests: Add test for getting SPDRP_BASE_CONTAINERID from PnP driver
setupapi: Add support for SPDRP_BASE_CONTAINERID
https://gitlab.winehq.org/wine/wine/-/merge_requests/432