--
v2: kerberos: When requested confidentiality InitializeSecurityContext() should also add integrity.
kerberos: EncryptMessage() should fail if context doesn't support confidentiality.
https://gitlab.winehq.org/wine/wine/-/merge_requests/8272
On Wed Jun 11 01:09:53 2025 +0000, Elizabeth Figura wrote:
> But the patch is going to be edited before committing anyway, whether
> the generated changes are included or not, so I don't see the issue?
The generated files will be updated on commit, but if there's a conflict the MR won't apply cleanly. And in general I refrain from merging MRs that cause conflicts because that makes it too easy to screw something up.
So not including generated files is not a requirement, but it increases the chances that the MR can go in smoothly.
Of course it also depends on the file, conflicts are not very likely with `include/Makefile.in`, but are pretty much guaranteed with `ntsyscalls.h` or `server_protocol.h`.
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/8244#note_106208
Now that is passed as environment block variable. Which generally works but not very well.
Fixes environment variables being stripped of in games started by FunCom launcher.
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/8276
This fixes a looping audio issue during seek in VRChat. The issue is that on Windows the stop request in handled immediately thus the AVPro MFT (which loops the audio) can be immediately flushed. Wine currently waits for a pending sample request to be completed before handling the stop request. As a result, the AVPro MFT loops audio whilst it waits for another sample (or to be flushed).
This MR releases the source CS before calling `wg_parser_stream_get_buffer` so it does not delay the handling of the stop request. This appears to be safe as the Unix side of `wg_parser_stream_get_buffer` has its own set of primitives.
--
v2: winegstreamer: Don't hold lock during wg_parser_stream_get_buffer.
winegstreamer: Signal eos on disconnect.
https://gitlab.winehq.org/wine/wine/-/merge_requests/8282