| Index: sandbox/win/src/service_resolver_unittest.cc
|
| diff --git a/sandbox/win/src/service_resolver_unittest.cc b/sandbox/win/src/service_resolver_unittest.cc
|
| index 8c44202d1421872d000b93de6815039f6f9951f8..59105cc49defa6b55a343c576354edbf2828979c 100644
|
| --- a/sandbox/win/src/service_resolver_unittest.cc
|
| +++ b/sandbox/win/src/service_resolver_unittest.cc
|
| @@ -105,7 +105,7 @@ NTSTATUS PatchNtdllWithResolver(const char* function, bool relaxed,
|
| // Any pointer will do as an interception_entry_point
|
| void* function_entry = resolver;
|
| size_t thunk_size = resolver->GetThunkSize();
|
| - scoped_array<char> thunk(new char[thunk_size]);
|
| + scoped_ptr<char[]> thunk(new char[thunk_size]);
|
| size_t used;
|
|
|
| NTSTATUS ret = resolver->Setup(ntdll_base, NULL, function, NULL,
|
|
|