aboutsummaryrefslogtreecommitdiff
path: root/src/libs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs')
-rw-r--r--src/libs/dutil/WixToolset.DUtil/procutil.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libs/dutil/WixToolset.DUtil/procutil.cpp b/src/libs/dutil/WixToolset.DUtil/procutil.cpp
index f96a1999..aba3b495 100644
--- a/src/libs/dutil/WixToolset.DUtil/procutil.cpp
+++ b/src/libs/dutil/WixToolset.DUtil/procutil.cpp
@@ -352,6 +352,7 @@ extern "C" HRESULT DAPI ProcExec(
352 ProcExitOnFailure(hr, "Failed to allocate full command-line."); 352 ProcExitOnFailure(hr, "Failed to allocate full command-line.");
353 353
354 si.cb = sizeof(si); 354 si.cb = sizeof(si);
355 si.dwFlags = STARTF_USESHOWWINDOW;
355 si.wShowWindow = static_cast<WORD>(nCmdShow); 356 si.wShowWindow = static_cast<WORD>(nCmdShow);
356 if (!::CreateProcessW(wzExecutablePath, sczFullCommandLine, NULL, NULL, FALSE, 0, 0, NULL, &si, &pi)) 357 if (!::CreateProcessW(wzExecutablePath, sczFullCommandLine, NULL, NULL, FALSE, 0, 0, NULL, &si, &pi))
357 { 358 {