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

Thread Start a new thread
Download
Threads by month
  • ----- 2026 -----
  • 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

January 2026

  • 1 participants
  • 567 discussions
[PATCH 0/1] MR9948: fix: prevent null pointer dereference in directory scanning
by Jiajin Cui (@jin-king1) 22 Jan '26

22 Jan '26
Signed-off-by: Jiajin Cui <cuijiajin(a)uniontech.com> -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9948
3 3
0 0
[PATCH 0/1] MR9949: crypt32: Sync backing store when contexts are added or removed.
by Hans Leidekker (@hans) 22 Jan '26

22 Jan '26
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/9949
2 1
0 0
Re: [PATCH v7 0/2] MR2044: ntoskrnl.exe: Implement acquiring and releasing guarded mutexes
by Jactry Zeng (@jactry) 22 Jan '26

22 Jan '26
Jactry Zeng (@jactry) commented about dlls/ntoskrnl.exe/sync.c: > KeInitializeEvent(&mutex->Event, SynchronizationEvent, FALSE); > } > > +/*********************************************************************** > + * KeAcquireGuardedMutexUnsafe (NTOSKRNL.EXE.@) > + */ > +void WINAPI KeAcquireGuardedMutexUnsafe(PKGUARDED_MUTEX mutex) > +{ > + LONG count; nitpick: here is an additional space at the end of the line. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/2044#note_127676
1 0
0 0
Re: [PATCH v7 0/2] MR2044: ntoskrnl.exe: Implement acquiring and releasing guarded mutexes
by Jactry Zeng (@jactry) 22 Jan '26

22 Jan '26
On Thu Jan 22 06:50:56 2026 +0000, Colleirose wrote: > Hi all, > The lack of these functions is causing the game Duet Night Abyss to fail > to open since the latest release. Looking on the Proton issue tracker, > there are at least 2 other games that fail for the same reason. > This merge request has been open since 2023 without any further > progress. Is there any update on whether the tests are failing due to > this code or for unrelated issues, and what other progress needs to be made? > If OP no longer has interest in fixing this issue I would be willing to > look into fixing it myself to fix the broken apps. Hi, Does this series exactly fix the issue and make those games playable? AFAIU, it is AntiCheatExpert requires these functions, and sometimes just implementing a couple of functions is far from making the game playable; what is worse, maybe some other game will become unplayable because the exposing of these functions guides them to another code path (e.g. it goes further in the anti-cheat detection) that has issues on Wine. btw, Arknights: Endfield, which ships AntiCheatExpert, depends on KeAcquireGuardedMutex() too. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/2044#note_127675
1 0
0 0
[PATCH 0/1] MR9486: windowscodecs: correct GIF LZW compression initialization
by Jiajin Cui (@jin-king1) 22 Jan '26

22 Jan '26
The GIF LZW compression algorithm was incorrectly initializing the code size to 8 bits regardless of the actual color depth. This caused issues with images that have fewer colors requiring smaller initial code sizes. The fix calculates the proper initial code size based on the actual number of colors in the image, using the formula: minimum code size = max(2, ceil(log2(color_count))). This ensures proper compression for images with small color palettes and maintains compatibility with GIF decoders that expect correct LZW initialization parameters. Log: Fixed GIF compression for images with small color palettes Signed-off-by: Jiajin Cui <cuijiajin(a)uniontech.com> -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9486
6 9
0 0
[PATCH v14 0/3] MR7539: combase : clsid_from_string_reg() add read of CurVer key value.
by Maotong Zhang (@xiaotong) 22 Jan '26

22 Jan '26
If the read ProgID only has a CurVer key and no CLSID key, it will directly return CO_E_CCLASSSTRING, causing the program to fail to continue running. Add the key value for finding CurVer. -- v14: combase:clsid_from_string_reg() add read of CurVer key value. ole32:Do not zero out when not a CLSID ole32/tests:Remove now succeeding todo_wine https://gitlab.winehq.org/wine/wine/-/merge_requests/7539
2 3
0 0
[PATCH v13 0/3] MR7539: combase : clsid_from_string_reg() add read of CurVer key value.
by Maotong Zhang (@xiaotong) 22 Jan '26

22 Jan '26
If the read ProgID only has a CurVer key and no CLSID key, it will directly return CO_E_CCLASSSTRING, causing the program to fail to continue running. Add the key value for finding CurVer. -- v13: combase:clsid_from_string_reg() add read of CurVer key value. ole32:Do not zero out when not a CLSID ole32/tests:Remove now succeeding todo_wine https://gitlab.winehq.org/wine/wine/-/merge_requests/7539
4 6
0 0
[PATCH 0/1] MR9945: kernel32: Don't use export forwarding for ntdll function table functions.
by Paul Gofman (@gofman) 21 Jan '26

21 Jan '26
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/9945
2 2
0 0
[PATCH v2 0/2] MR9944: ntdll: Stop walk in RtlWalkFrameChain() if there is no function entry on x64.
by Paul Gofman (@gofman) 21 Jan '26

21 Jan '26
-- v2: ntdll: Stop walk in RtlWalkFrameChain() if there is no function entry on x64. https://gitlab.winehq.org/wine/wine/-/merge_requests/9944
2 3
0 0
[PATCH 0/2] MR9944: ntdll: Stop walk in RtlWalkFrameChain() if there is no function entry on x64.
by Paul Gofman (@gofman) 21 Jan '26

21 Jan '26
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/9944
2 3
0 0
  • ← Newer
  • 1
  • ...
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • ...
  • 57
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.