From b9688f6d54df5ac9d4e25856a633d60a1f04e69c Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Sun, 15 Mar 2020 20:04:20 +0000 Subject: [PATCH] CreateProcess doesn't need any special flags in this case (executing echocfg.exe). --- src/sbbs3/ctrl/MainFormUnit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sbbs3/ctrl/MainFormUnit.cpp b/src/sbbs3/ctrl/MainFormUnit.cpp index 056c70a32c..34337ba271 100644 --- a/src/sbbs3/ctrl/MainFormUnit.cpp +++ b/src/sbbs3/ctrl/MainFormUnit.cpp @@ -3946,7 +3946,7 @@ void __fastcall TMainForm::FidonetConfigureMenuItemClick(TObject *Sender) NULL, // process security attributes NULL, // thread security attributes FALSE, // handle inheritance flag - CREATE_NEW_CONSOLE|CREATE_SEPARATE_WOW_VDM, // creation flags + 0, // creation flags NULL, // pointer to new environment block cfg.ctrl_dir, // pointer to current directory name &startup_info, // pointer to STARTUPINFO -- GitLab