| Index: sandbox/win/src/target_process.cc
|
| diff --git a/sandbox/win/src/target_process.cc b/sandbox/win/src/target_process.cc
|
| index a2d630c9452aa9f53d392a5b13c4c90e211cad05..5f73adcd4f9b14a3d79268d29ba0b3f41aea9bdc 100644
|
| --- a/sandbox/win/src/target_process.cc
|
| +++ b/sandbox/win/src/target_process.cc
|
| @@ -116,7 +116,7 @@ DWORD TargetProcess::Create(const wchar_t* exe_path,
|
| exe_name_.reset(_wcsdup(exe_path));
|
|
|
| // the command line needs to be writable by CreateProcess().
|
| - scoped_ptr_malloc<wchar_t> cmd_line(_wcsdup(command_line));
|
| + scoped_ptr<wchar_t, base::FreeDeleter> cmd_line(_wcsdup(command_line));
|
|
|
| // Start the target process suspended.
|
| DWORD flags =
|
|
|