- Nov 29, 2018
-
-
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- Nov 11, 2018
-
-
Signed-off-by: Marcus Meissner <marcus@jet.franken.de> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 71c3bf2b) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Zebediah Figura <zfigura@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 2689f3e6) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 68cfa7fd) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
gcc is now warning about this. Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 9b940964) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Don't assume it ends with the fake PE header. This assumption doesn't hold on Mac OS: the __data section where it was placed is located after several other sections, all in the __DATA segment. Unfortunately, this causes Wine, when DEP/NX is turned off, to override the page protections for the start of the __DATA segment, removing write permission from them, leading to a crash when winemac.drv attempted to use an Objective-C class for the first time. Also, be sure to include the zero-fill (i.e. BSS) sections in the total size of the .data section. This should fix some tests that use large uninitialized arrays. Signed-off-by: Chip Davis <cdavis@codeweavers.com> Signed-off-by: Ken Thomases <ken@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit bdca749f) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Vincent Povirk <vincent@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 39c8ebdd) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Vincent Povirk <vincent@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 1da650a1) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
- Nov 06, 2018
-
-
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 55d4f631) Conflicts: dlls/wined3d/adapter_gl.c Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45199 Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 72c2af38) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45199 Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit b917cc66) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45199 Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 1e8c62b0) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45199 Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit bca3ec9f) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45199 Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit b8b946dd) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Michael Stefaniuc authored
This reverts commit 295359a1. It breaks compilation for ARM64 with other compilers than clang > 5.0. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=46106 Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
- Nov 03, 2018
-
-
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 24279f1c) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45622 Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 5b8565d6) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=40598 Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit bfe8510e) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
With the 'for' loop /f syntax, if tokens are requested the the normal syntax is something like tokens=1,2* but there is valid syntax like 1,2,* (which effectively means the same). Make this other syntax work. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45722 Signed-off-by: Jason Edmeades <us@edmeades.me.uk> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 1a7333be) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
for /f allows a special syntax of tokens=* (rather than tokens=1* for example) which just means put the whole line into the next variable). Note the handling of the 'next variable' was wrong in the case of it being 'A' or 'a' as the wrap calculation was wrong, but this only affected using this new syntax. Signed-off-by: Jason Edmeades <us@edmeades.me.uk> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 4030a952) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45786 Signed-off-by: Rodrigo Saboya <saboya@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit b29cdbd5) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=42710 Signed-off-by: Jactry Zeng <jzeng@codeweavers.com> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 68e35eb7) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45617 Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit b0826c01) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 71dec099) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45770 Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit db2d8316) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit f6484434) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
When processing a (..) multiline section, each line is processed and if it starts with a '@' it is not echoed, but more importantly if is 'rem' then anything else on that line should be ignored. The reported issue was that a pipe was being executed when it was hidden behind a rem, which was trigged by the preceeding '@' character not being skipped. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45729 Signed-off-by: Jason Edmeades <us@edmeades.me.uk> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit f87e25a7) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Avoid whitespace affecting the parsing of a for loops items. The leading and trailing quote or backtick needed removing, and it was assumed that the trailing character would be that character, which was wrong when there was whitespace unless the parameter is trimmed. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45731 Signed-off-by: Jason Edmeades <us@edmeades.me.uk> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit becfbb80) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=22255 Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 0c049b67) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45715 Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit e379bfd3) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45784 Signed-off-by: Gijs Vermeulen <gijsvrm@gmail.com> Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 31b671f3) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45821 Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit bfe48889) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45372 Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 6e8e32bb) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Gijs Vermeulen <gijsvrm@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 4ecb8b7e) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Based on a patch by Louis Lenders. Signed-off-by: Gijs Vermeulen <gijsvrm@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit c8389ae1) Conflicts: include/Makefile.in Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=43488 Signed-off-by: Jactry Zeng <jzeng@codeweavers.com> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 563bfdfc) Conflicts: dlls/riched20/tests/txtsrv.c Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45785 Signed-off-by: Gijs Vermeulen <gijsvrm@gmail.com> Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit c5bb1084) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
- Oct 07, 2018
-
-
The Message TVM_EXPAND is captured in treeview_notify, then passes g_pChildWnd->hTreeWnd on to OnTreeExpanding which hasn't been initialized yet. The function get_last_key is already called after the hTreeWnd has been assigned to select the previous selected item (if it exists). Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 006d3f33) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 6552ddaa) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-
Signed-off-by: Józef Kucia <jkucia@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> (cherry picked from commit 2aa5b001) Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
-