| Index: runtime/bin/process_win.cc
|
| ===================================================================
|
| --- runtime/bin/process_win.cc (revision 2981)
|
| +++ runtime/bin/process_win.cc (working copy)
|
| @@ -229,6 +229,7 @@
|
| int Process::Start(const char* path,
|
| char* arguments[],
|
| intptr_t arguments_length,
|
| + const char* working_directory,
|
| intptr_t* in,
|
| intptr_t* out,
|
| intptr_t* err,
|
| @@ -346,7 +347,7 @@
|
| TRUE, // InheritHandles
|
| 0, // CreationFlags
|
| NULL, // Environment
|
| - NULL, // CurrentDirectory,
|
| + working_directory,
|
| &startup_info,
|
| &process_info);
|
|
|
|
|