Alexandre Julliard pushed to branch master at wine / wine
Commits:
71c0614c by Eric Pouech at 2025-10-17T12:28:10+02:00
cmd: Rewrite binary operations for pipes.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
f30e1c06 by Eric Pouech at 2025-10-17T12:28:11+02:00
cmd: Add support for IF commands in rewrite.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
42202e49 by Eric Pouech at 2025-10-17T12:28:12+02:00
cmd: Rewrite FOR commands for pipe.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
b23591b9 by Eric Pouech at 2025-10-17T12:28:14+02:00
cmd: Rewrite explicit blocks for pipe.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
d28db443 by Eric Pouech at 2025-10-17T12:28:18+02:00
cmd: Remove transition helpers for pipe commands.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=48027
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
3 changed files:
- programs/cmd/builtins.c
- programs/cmd/tests/test_builtins.cmd.exp
- programs/cmd/wcmdmain.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/b6dc3d4ad1d84b0126f7574848bde…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/b6dc3d4ad1d84b0126f7574848bde…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
4f11a530 by Zhiyi Zhang at 2025-10-17T12:27:37+02:00
wintypes: Fix a memory leak.
"4b1e53ce wintypes: Make a copy of the passed string in IPropertyValueStatics::CreateString."
creates a copy. We should release the string in property_value_Release().
- - - - -
2715c6fb by Zhiyi Zhang at 2025-10-17T12:27:38+02:00
wintypes: Restore a pointer check in property_value_statics_CreateString().
Fix a regression from 4b1e53ce.
- - - - -
e9a1434b by Zhiyi Zhang at 2025-10-17T12:27:45+02:00
wintypes: Increase string reference count when property_value_GetString() succeeds.
- - - - -
81916b10 by Zhiyi Zhang at 2025-10-17T12:27:45+02:00
wintypes: Create a copy for string arrays for property_value_statics_CreateStringArray().
Similar to 4b1e53ce to avoid use-after-free.
- - - - -
b6dc3d4a by Zhiyi Zhang at 2025-10-17T12:27:46+02:00
wintypes: Increase string reference count when property_value_GetStringArray() succeeds.
- - - - -
2 changed files:
- dlls/wintypes/main.c
- dlls/wintypes/tests/wintypes.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/754a6c8506090006c412a75f7c144…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/754a6c8506090006c412a75f7c144…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
754a6c85 by Reinhold Gschweicher at 2025-10-17T12:27:13+02:00
msxml3/element: Implement removeAttributeNode function.
Implement the function `IXMLDOMElement_removeAttributeNode`.
Check if the given attribute has the element as parent. If so remove it
just like `domelem_remove_qualified_item` does.
Use the fact, that attribute names are unique in elements.
Add unittest to check if `removeAttributeNode` with output variable set
to `NULL` still removes the attribute from the element.
- - - - -
2 changed files:
- dlls/msxml3/element.c
- dlls/msxml3/tests/domdoc.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/754a6c8506090006c412a75f7c1445…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/754a6c8506090006c412a75f7c1445…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
ccdf060e by Zhiyi Zhang at 2025-10-17T10:42:17+02:00
comctl32/tests: Move toolbar Unicode format tests.
- - - - -
3c55ae6f by Zhiyi Zhang at 2025-10-17T10:42:58+02:00
comctl32: Add a helper to handle CCM_SETVERSION messages.
- - - - -
2ed436dc by Zhiyi Zhang at 2025-10-17T10:42:58+02:00
user32/tests: Remove some broken() for older systems in test_comctl32_class().
They could be hiding test failures.
- - - - -
8 changed files:
- dlls/comctl32/comctl32.h
- dlls/comctl32/commctrl.c
- dlls/comctl32/listview.c
- dlls/comctl32/rebar.c
- dlls/comctl32/tests/misc.c
- dlls/comctl32/tests/toolbar.c
- dlls/comctl32/toolbar.c
- dlls/user32/tests/class.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/d76b59d5c021ea5da49d1e1430c1d…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/d76b59d5c021ea5da49d1e1430c1d…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
fedd414f by Zhiyi Zhang at 2025-10-16T21:56:37+02:00
comctl32/tests: Add CCM_SETVERSION tests.
I also tested creating the Unicode version of these comctl32 controls locally and got the same result.
- - - - -
74853944 by Zhiyi Zhang at 2025-10-16T21:56:40+02:00
comctl32/toolbar: Don't change Unicode format when handling CCM_SETVERSION.
- - - - -
8ad240af by Zhiyi Zhang at 2025-10-16T21:56:42+02:00
comctl32/listview: Fix CCM_{GET,SET}VERSION handling.
- - - - -
066c74ab by Zhiyi Zhang at 2025-10-16T21:56:43+02:00
comctl32/rebar: Fix CCM_{GET,SET}VERSION handling.
- - - - -
7bc0ce9f by Zhiyi Zhang at 2025-10-16T21:56:44+02:00
comctl32/toolbar: Fix CCM_{GET,SET}VERSION handling.
- - - - -
a7084940 by Zhiyi Zhang at 2025-10-16T21:56:45+02:00
include: Bump COMCTL32_VERSION to 6.
- - - - -
5 changed files:
- dlls/comctl32/listview.c
- dlls/comctl32/rebar.c
- dlls/comctl32/tests/misc.c
- dlls/comctl32/toolbar.c
- include/commctrl.h
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/63ceb74dba021429f250402e7817e…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/63ceb74dba021429f250402e7817e…
You're receiving this email because of your account on gitlab.winehq.org.