diff options
-rw-r--r-- | winsup/cygwin/ChangeLog | 6 | ||||
-rw-r--r-- | winsup/cygwin/spawn.cc | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 4959bad69..f7d5202fa 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,10 +1,14 @@ 2010-06-29 Corinna Vinschen <corinna@vinschen.de> + * spawn.cc (spawn_guts): Reinstantiate a FIXME comment. + +2010-06-29 Corinna Vinschen <corinna@vinschen.de> + * exceptions.cc (dump_exception): Use %W instead of %s for printing progname. * fork.cc (frok::parent): Fix typos in debug output. * spawn.cc (spawn_guts): Copy wide Win32 filename into _pinfo::progname, - rather than native NT name. + rather than native NT name. Use %W instead of %S for printing progname. 2010-06-28 Christopher Faylor <me+cygwin@cgf.cx> diff --git a/winsup/cygwin/spawn.cc b/winsup/cygwin/spawn.cc index 9d11c8c22..d56a3852c 100644 --- a/winsup/cygwin/spawn.cc +++ b/winsup/cygwin/spawn.cc @@ -692,7 +692,7 @@ loop: myself->dwProcessId = pi.dwProcessId; strace.execing = 1; myself.hProcess = hExeced = pi.hProcess; - real_path.get_wide_win32_path (myself->progname); + real_path.get_wide_win32_path (myself->progname); // FIXME: race? sigproc_printf ("new process name %W", myself->progname); /* If wr_proc_pipe doesn't exist then this process was not started by a cygwin process. So, we need to wait around until the process we've just "execed" |