diff options
author | Eli Zaretskii <eliz@gnu.org> | 2013-10-22 19:04:34 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2013-10-22 19:04:34 +0300 |
commit | 9c28d5125d081921a5affbe8094b19adfd81a1b7 (patch) | |
tree | 76bef4619d46e76d764b7d23cd20eff67300df04 | |
parent | a7794f483b5351ff7712bc02d0f3469551ce5290 (diff) | |
download | gunmake-9c28d5125d081921a5affbe8094b19adfd81a1b7.tar.gz |
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.
-rw-r--r-- | w32/subproc/sub_proc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/w32/subproc/sub_proc.c b/w32/subproc/sub_proc.c index 9bbe3e5..dd0c1a4 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]; |