[PATCH] programs/start: remove workaround for /exec without console

Eric Pouech eric.pouech at gmail.com
Wed Apr 13 04:51:11 CDT 2022


rather use inheritange of SHELL_NO_WINDOW pseudo console in this case

Signed-off-by: Eric Pouech <eric.pouech at gmail.com>

---
 programs/start/start.c |    5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/programs/start/start.c b/programs/start/start.c
index 7252d54e046..835128ebf28 100644
--- a/programs/start/start.c
+++ b/programs/start/start.c
@@ -516,10 +516,7 @@ int __cdecl wmain (int argc, WCHAR *argv[])
                         break;
 		}
                 else if (is_option(argv[i], L"/exec")) {
-                        /* If start.exe isn't attached to a console, force that no console would be created.
-                         * This is needed when target process belongs to CUI subsystem.
-                         */
-                        creation_flags = GetConsoleCP() == 0 ? DETACHED_PROCESS : 0;
+                        creation_flags = 0;
                         sei.fMask = SEE_MASK_NOCLOSEPROCESS | SEE_MASK_NO_CONSOLE | SEE_MASK_FLAG_NO_UI;
                         i++;
                         break;




More information about the wine-devel mailing list