- 18 May, 2023 24 commits
-
-
Sebastian Mayr authored
This test is an adaptation of the corresponding d3d9 test. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54898
-
Brendan Shanks authored
-
Piotr Caban authored
-
Bartosz Kosiorek authored
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53947
-
Paul Gofman authored
-
Nikolay Sivov authored
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
-
Rémi Bernon authored
-
Rémi Bernon authored
-
Rémi Bernon authored
-
Rémi Bernon authored
-
Rémi Bernon authored
-
Rémi Bernon authored
The caret callback is rarely used and XIM also doesn't support changing the preedit string, so we cannot support composition string updates from the PE side either. Requesting only the cursor position, is then likely not useful.
-
Rémi Bernon authored
-
Eric Pouech authored
Showing some cases where loader should unredirect some module paths from syswow64 to system32. Signed-off-by: Eric Pouech <epouech@codeweavers.com>
-
Esme Povirk authored
-
Esme Povirk authored
-
Esme Povirk authored
-
Bernhard Kölbl authored
Signed-off-by: Bernhard Kölbl <besentv@gmail.com>
-
Anton Baskanov authored
Fixes upside-down videos in multiple games (e.g. Hard Truck 2, Firestarter).
-
Anton Baskanov authored
-
Anton Baskanov authored
videoflip can't handle 15/16-bit RGB. Fixes video playback in multiple games (e.g. Hard Truck 2, Firestarter).
-
Bartosz Kosiorek authored
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53947
-
Jinoh Kang authored
Today, find_proxy_manager() may return a proxy manager that is about to be freed. This happens when the proxy manager's reference count reaches zero, but proxy_manager_destroy() has not removed the proxy manager from the apartment proxy list. Fix this by incrementing the reference count only if it is already nonzero. If the reference count is zero, any reference to the proxy manager will become invalid after the current thread leaves the critical section (apt->cs). This is because proxy_manager_destroy() will proceed to destroy the proxy manager after the apartment lock (apt->cs) is released. An alternative solution would be to prevent find_proxy_manager from observing the zero reference count in the first place. Multiple approaches have been considered for implementing this solution, but were eventually dropped due to several disadvantages when applied to the current Wine codebase: 1. Always acquire the apartment lock from the proxy manager's Release() method, and hold the lock until the proxy manager is completely removed from the list if the reference count drops to zero. This requires handling the special case when the proxy manager's parent apartment has been destroyed. When an apartment is destroyed, it sets the `parent` field of each proxy manager that was previously owned by the apartment to NULL. This means that each access to `This->parent->cs` has to be guarded by a NULL check for `This->parent`. Even if `parent` were never NULL, unconditionally acquiring a lock may unnecessarily block the subroutine and introduce contention. 2. Opportunistically decrement the reference count without holding the lock, but only if the count is greater than 1. This approach is still not free from the NULL parent apartment problem. 3. Check for any concurrent reference count change from proxy_manager_destroy(), and bail out if such change has occurred. This makes it possible for the proxy manager's AddRef() method to return 1, which is unusual.
-
Jinoh Kang authored
Today, find_proxy_manager() tests if AddRef() returns 0 in an attempt to protect against a race condition bug. Note that AddRef does not return zero in normal circumstances, since AddRef returns the reference count after the increment, not before. Fix this by comparing the return value of AddRef() against 1, not 0.
-
- 17 May, 2023 11 commits
-
-
Francois Gouget authored
-
Francois Gouget authored
-
Nikolay Sivov authored
This is likely a regression from cd4f48f2. Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
-
Piotr Caban authored
-
Piotr Caban authored
Fixes regression caused by aa3699dd.
-
Piotr Caban authored
-
Piotr Caban authored
Doing it this way avoids passing Unix library pointers throught PE.
-
Hans Leidekker authored
-
Nikolay Sivov authored
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
-
Zhiyi Zhang authored
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
-
Ziqing Hui authored
-
- 16 May, 2023 5 commits
-
-
Rémi Bernon authored
-
Mohamad Al-Jaf authored
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54934
-
Rémi Bernon authored
-
Rémi Bernon authored
-
Rémi Bernon authored
-