* Remove a stray semicolon
* Restore dropped nullptr program argument in use of create_process() under CYGWIN
void *environment, const wchar_t *cur_dir,
bool no_randomization,
STARTUPINFOW *startup_info,
- PROCESS_INFORMATION *process_info);
+ PROCESS_INFORMATION *process_info)
{
return create_process_wrapper (CreateProcessW, image, command_line, flags,
environment, cur_dir, no_randomization,
}
windows_init_thread_list ();
- ret = create_process (args, flags, w32_env,
+ ret = create_process (nullptr, args, flags, w32_env,
inferior_cwd != nullptr ? infcwd : nullptr,
disable_randomization,
&si, &pi);