list.winehq.org
Sign In Sign Up
Manage this list Sign In Sign Up

Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview

Wine-GitLab

Threads by month
  • ----- 2026 -----
  • May
  • April
  • March
  • February
  • January
  • ----- 2025 -----
  • December
  • November
  • 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
wine-gitlab@list.winehq.org

April 2025

  • 1 participants
  • 908 discussions
[PATCH 0/1] MR7887: po: Update Lithuanian translation.
by Aurimas Fišeras April 23, 2025

April 23, 2025
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/7887
1 1
0 0
[PATCH 0/1] MR7886: msvcrt: Fix memory leaks in create_locinfo.
by Piotr Caban (@piotr) April 23, 2025

April 23, 2025
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/7886
2 1
0 0
[PATCH v3 0/4] MR7885: winebth.sys part 11: Support initiating pairing requests with remote devices.
by Vibhav Pant (@vibhavp) April 23, 2025

April 23, 2025
Add `IOCTL_WINEBTH_RADIO_START_AUTH`, which gets used to implement `BluetoothAuthenticateDeviceEx`. -- v3: bluetoothapis/tests: Add tests for BluetoothAuthenticateDeviceEx. https://gitlab.winehq.org/wine/wine/-/merge_requests/7885
2 4
0 0
[PATCH v2 0/4] MR7885: winebth.sys part 11: Support initiating pairing requests with remote devices.
by Vibhav Pant (@vibhavp) April 23, 2025

April 23, 2025
Add `IOCTL_WINEBTH_RADIO_START_AUTH`, which gets used to implement `BluetoothAuthenticateDeviceEx`. -- v2: bluetoothapis/tests: Add tests for BluetoothAuthenticateDeviceEx. https://gitlab.winehq.org/wine/wine/-/merge_requests/7885
2 4
0 0
[PATCH 0/4] MR7885: winebth.sys part 11: Support initiating pairing requests with remote devices.
by Vibhav Pant (@vibhavp) April 23, 2025

April 23, 2025
Add `IOCTL_WINEBTH_RADIO_START_AUTH`, which gets used to implement `BluetoothAuthenticateDeviceEx`. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7885
2 4
0 0
[PATCH v3 0/1] MR7829: d3d9/tests: Skip some d3d12 tests instead of crashing.
by Rémi Bernon April 23, 2025

April 23, 2025
-- v3: d3d9/tests: Skip some d3d12 tests instead of crashing. https://gitlab.winehq.org/wine/wine/-/merge_requests/7829
3 3
0 0
[PATCH 0/1] MR7834: d3d11/tests: Add broken to test_nv12.
by Bernhard Übelacker April 23, 2025

April 23, 2025
[This is a testbot run with this patch.](https://testbot.winehq.org/JobDetails.pl?Key=157936) -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7834
3 3
0 0
[PATCH v6 0/2] MR7676: winegstreamer: Make sure WMSyncReader never reads in the background.
by Yuxuan Shui (@yshui) April 23, 2025

April 23, 2025
WMSyncReader starts a background read thread that reads from the IStream passed to IWMSyncReader::OpenStream. This means it could use the IStream in the background even when no IWMSyncReader methods are being called. For well-behaved applications, this is probably OK. However, AQUARIUM (Steam 2515070) frees the IStream it passes to WMSyncReader _before_ it calls IWMSyncReader::Close, which stops the read thread. This causes the read thread to access freed memory. This is improper, but not unreasonable, as IWMSyncReader is supposed to be a synchronous interface, so one might assume when they weren't calling into IWMSyncReader methods, the IStream won't be used. This commit adds a `wg_parser_dont_read` function, which can be used to stop wg_parser from issuing read requests. This is used by IWMSyncReader to make sure read requests are only issued when IWMSyncReader methods are being called. -- v6: DONT MERGE: winedebug in CI, only run qasf:asfreader https://gitlab.winehq.org/wine/wine/-/merge_requests/7676
2 2
0 0
[PATCH v5 0/2] MR7676: winegstreamer: Make sure WMSyncReader never reads in the background.
by Yuxuan Shui (@yshui) April 23, 2025

April 23, 2025
WMSyncReader starts a background read thread that reads from the IStream passed to IWMSyncReader::OpenStream. This means it could use the IStream in the background even when no IWMSyncReader methods are being called. For well-behaved applications, this is probably OK. However, AQUARIUM (Steam 2515070) frees the IStream it passes to WMSyncReader _before_ it calls IWMSyncReader::Close, which stops the read thread. This causes the read thread to access freed memory. This is improper, but not unreasonable, as IWMSyncReader is supposed to be a synchronous interface, so one might assume when they weren't calling into IWMSyncReader methods, the IStream won't be used. This commit adds a `wg_parser_dont_read` function, which can be used to stop wg_parser from issuing read requests. This is used by IWMSyncReader to make sure read requests are only issued when IWMSyncReader methods are being called. -- v5: DONT MERGE: winedebug in CI winegstreamer: Make sure WMSyncReader never reads in the background. https://gitlab.winehq.org/wine/wine/-/merge_requests/7676
2 2
0 0
[PATCH v4 0/1] MR7676: winegstreamer: Make sure WMSyncReader never reads in the background.
by Yuxuan Shui (@yshui) April 23, 2025

April 23, 2025
WMSyncReader starts a background read thread that reads from the IStream passed to IWMSyncReader::OpenStream. This means it could use the IStream in the background even when no IWMSyncReader methods are being called. For well-behaved applications, this is probably OK. However, AQUARIUM (Steam 2515070) frees the IStream it passes to WMSyncReader _before_ it calls IWMSyncReader::Close, which stops the read thread. This causes the read thread to access freed memory. This is improper, but not unreasonable, as IWMSyncReader is supposed to be a synchronous interface, so one might assume when they weren't calling into IWMSyncReader methods, the IStream won't be used. This commit adds a `wg_parser_dont_read` function, which can be used to stop wg_parser from issuing read requests. This is used by IWMSyncReader to make sure read requests are only issued when IWMSyncReader methods are being called. -- v4: winegstreamer: Make sure WMSyncReader never reads in the background. https://gitlab.winehq.org/wine/wine/-/merge_requests/7676
3 4
0 0
  • ← Newer
  • 1
  • ...
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • ...
  • 91
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.
Hosted in Mailman3.com