| Index: sandbox/win/wow_helper/service64_resolver.cc
|
| diff --git a/sandbox/win/wow_helper/service64_resolver.cc b/sandbox/win/wow_helper/service64_resolver.cc
|
| index fe8a210abb1b2ed00d29a849ee2efe25f5864028..033b9d771e1519c3c18edc4365c515b261a72fe5 100644
|
| --- a/sandbox/win/wow_helper/service64_resolver.cc
|
| +++ b/sandbox/win/wow_helper/service64_resolver.cc
|
| @@ -210,7 +210,7 @@ NTSTATUS Service64ResolverThunk::Setup(const void* target_module,
|
| return ret;
|
|
|
| size_t thunk_bytes = GetThunkSize();
|
| - scoped_array<char> thunk_buffer(new char[thunk_bytes]);
|
| + scoped_ptr<char[]> thunk_buffer(new char[thunk_bytes]);
|
| ServiceFullThunk* thunk = reinterpret_cast<ServiceFullThunk*>(
|
| thunk_buffer.get());
|
|
|
|
|