mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-12-28 15:57:48 +00:00
Fix Savannah bug #31150 with failures due to setting window title.
* sub_proc.c (process_begin): Don't set startInfo.lpTitle, it reportedly causes SV bug #31150, and according to MSDN it's a no-no.
This commit is contained in:
parent
a7794f483b
commit
9c28d5125d
1 changed files with 0 additions and 1 deletions
|
@ -756,7 +756,6 @@ process_begin(
|
|||
startInfo.lpReserved = 0;
|
||||
startInfo.cbReserved2 = 0;
|
||||
startInfo.lpReserved2 = 0;
|
||||
startInfo.lpTitle = shell_name ? shell_name : exec_path;
|
||||
startInfo.hStdInput = (HANDLE)pproc->sv_stdin[1];
|
||||
startInfo.hStdOutput = (HANDLE)pproc->sv_stdout[1];
|
||||
startInfo.hStdError = (HANDLE)pproc->sv_stderr[1];
|
||||
|
|
Loading…
Reference in a new issue