From f0f4220b05763067e9af9716a9f0a485da971c78 Mon Sep 17 00:00:00 2001 From: Marcus Brummer Date: Mon, 16 Nov 2020 18:26:57 +0100 Subject: [PATCH] Fixed exit code retrieval of spawned processes on Windows Use GetExitCodeProcess() on Windows to retrieve the exit code of a process in OS:excute() --- platform/windows/os_windows.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/platform/windows/os_windows.cpp b/platform/windows/os_windows.cpp index b108d74b2e3..646bc3aa4cb 100644 --- a/platform/windows/os_windows.cpp +++ b/platform/windows/os_windows.cpp @@ -466,8 +466,10 @@ Error OS_Windows::execute(const String &p_path, const List &p_arguments, ERR_FAIL_COND_V(ret == 0, ERR_CANT_FORK); if (p_blocking) { - DWORD ret2 = WaitForSingleObject(pi.pi.hProcess, INFINITE); + WaitForSingleObject(pi.pi.hProcess, INFINITE); if (r_exitcode) { + DWORD ret2; + GetExitCodeProcess(pi.pi.hProcess, &ret2); *r_exitcode = ret2; }