| Index: sandbox/src/target_process.cc
|
| ===================================================================
|
| --- sandbox/src/target_process.cc (revision 127834)
|
| +++ sandbox/src/target_process.cc (working copy)
|
| @@ -141,6 +141,7 @@
|
| DWORD TargetProcess::Create(const wchar_t* exe_path,
|
| const wchar_t* command_line,
|
| const wchar_t* desktop,
|
| + PSECURITY_ATTRIBUTES security_attributes,
|
| PROCESS_INFORMATION* target_info) {
|
| exe_name_ = _wcsdup(exe_path);
|
|
|
| @@ -162,7 +163,7 @@
|
| if (!::CreateProcessAsUserW(lockdown_token_,
|
| exe_path,
|
| cmd_line.get(),
|
| - NULL, // No security attribute.
|
| + security_attributes,
|
| NULL, // No thread attribute.
|
| FALSE, // Do not inherit handles.
|
| flags,
|
|
|