- Nov 08, 2022
-
-
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Partial cherry-pick of a1af4124 Changes by Alexandre Julliard. Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Original code written by Alexandre Julliard, Rémi Bernon and Hugh McMaster. Changes specific for stable: - Do not run the build script on each commit. The build scripts are missing on the initially pulled commits. Also it is common for the stable build to be broken until a few commits are cherry-picked. - Use the correct Gecko and Mono versions. - Don't run the tests for now as too many fail. Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Alexandre Julliard authored
(cherry picked from commit 12bf088a) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Alexandre Julliard authored
Conflicts: tools/gitlab/build.yml (cherry picked from commit dbb55ed9) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Alexandre Julliard authored
(cherry picked from commit f9cad1bd) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53034 Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit b90662e6) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 7e48747b) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
compareUdpRow() was already performing the byte-swaps but compareIpAddrRow() and compareIpForwardRow() need them too. Signed-off-by: Francois Gouget <fgouget@codeweavers.com> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 631fde70) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
The difference between two ULONGs may not fit in an int, causing comparison errors. Signed-off-by: Francois Gouget <fgouget@codeweavers.com> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 85c6caf6) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Alexandre Julliard authored
Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 79f68cb3) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Alexandre Julliard authored
(cherry picked from commit c0c93d80) Conflicts: dlls/webservices/tests/writer.c Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Alexandre Julliard authored
(cherry picked from commit 81e91afb) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Alexandre Julliard authored
Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 02eae36e) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Alexandre Julliard authored
(cherry picked from commit 3c9c1ffd) Conflicts: dlls/ntdll/tests/info.c Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Alexandre Julliard authored
(cherry picked from commit 5314fac5) Conflicts: dlls/kernel32/tests/thread.c Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
(cherry picked from commit 41274a09) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Alexandre Julliard authored
(cherry picked from commit 3253cbd8) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Scroll bar arrow button background within its sizing margins is all white, using stretch instead of tile has no visual difference and is more efficient. On Windows, stretch sizing type is also used for this part. Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 3acf12b8) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
This normally works because the only module linking to tiff (windowscodecs) also pulls in static zlib via PNG_PE_LIBS. However, if using shared libpng, windowscodecs will currently fail to link. Signed-off-by: Zebediah Figura <zfigura@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit ad5b6be1) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Apply the same patch from 72528be8 for adpcm data sent to mono destinations in addition to stereo destinations. Signed-off-by: Brandon Moore <moore.3071@osu.edu> Signed-off-by: Andrew Eikum <aeikum@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 63f9a082) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
According to MSDN [1], the `TCP_NODELAY` parameter should be of type `BOOL` which is 4 bytes. Due to a bug [2] in rustc passing a byte instead of an int, any program written in rust that tries to set that option on a socket will fail with a "Invalid parameter supplied" error. Turns out that setsockopt on linux does not want optlen to be less than 4 bytes [3]. Windows' behavior is the following: - For optlen <= 0, return SOCKET_ERROR and set last error to WSAEFAULT - For optlen > 0, ignore the optlen value and set the TCP_NODELAY value to one if the first byte of the given optvalue is not 0. This will fix any rust program using the hyper library to do HTTP requests. [1]: https://docs.microsoft.com/en-us/windows/win32/winsock/ipproto-tcp-socket-options [2]: https://github.com/rust-lang/rust/blob/44593aeb1387b1be355aeaf0040d5927bd80f060/library/std/src/sys/windows/net.rs#L470 [3]: https://github.com/torvalds/linux/blob/d58071a8a76d779eedab38033ae4c821c30295a5/net/ipv4/tcp.c#L3419-L3420 Signed-off-by: Bastien Orivel <eijebong@bananium.fr> Signed-off-by: Zebediah Figura <zfigura@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit d6ea38f3) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Otherwise when hr is not SUCCEEDED we use array and free it again. Signed-off-by: Fabian Maurer <dark.shadow4@web.de> Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit d98646f9) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Fabian Maurer <dark.shadow4@web.de> Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit f5d41f28) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 312e0d51) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Fabian Maurer <dark.shadow4@web.de> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit f1cf7a02) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit c814fbe1) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 68c3ac76) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Zebediah Figura <zfigura@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 7b32a327) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Zebediah Figura <zfigura@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 93d8a86c) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 5a12c6a4) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 746b5bbd) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 6daef74f) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 978df2e0) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 950792ae) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 78df9cb9) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 36af6828) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
And use a single variable for the encoded or decoded URL so that free only has to be called once. Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 2b63fdd9) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit ad90181e) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-