From: Eli Zaretskii Date: Tue, 22 Oct 2013 16:04:34 +0000 (+0300) Subject: Fix Savannah bug #31150 with failures due to setting window title. X-Git-Tag: 4.1~66 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9c28d5125d081921a5affbe8094b19adfd81a1b7;p=thirdparty%2Fmake.git 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. --- diff --git a/w32/subproc/sub_proc.c b/w32/subproc/sub_proc.c index 9bbe3e58..dd0c1a42 100644 --- a/w32/subproc/sub_proc.c +++ b/w32/subproc/sub_proc.c @@ -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];