Commit ff7ff4d0 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

start: Ignore Ctrl-C and let the child decides what to do with it.

Based on a patch from Bernhard Übelacker Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51766Signed-off-by: 's avatarEric Pouech <eric.pouech@gmail.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent d61c9998
......@@ -676,6 +676,7 @@ done:
if (sei.fMask & SEE_MASK_NOCLOSEPROCESS) {
DWORD exitcode;
SetConsoleCtrlHandler(NULL, TRUE);
WaitForSingleObject(sei.hProcess, INFINITE);
GetExitCodeProcess(sei.hProcess, &exitcode);
ExitProcess(exitcode);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment