| Index: sandbox/win/src/service_resolver_32.cc
|
| diff --git a/sandbox/win/src/service_resolver_32.cc b/sandbox/win/src/service_resolver_32.cc
|
| index 349751653e41ed51f70e19fdfbedbb5afc734e78..2e69dbc9e7e083b74e8f4db47f7e257ce29acf7f 100644
|
| --- a/sandbox/win/src/service_resolver_32.cc
|
| +++ b/sandbox/win/src/service_resolver_32.cc
|
| @@ -159,7 +159,7 @@ NTSTATUS ServiceResolverThunk::Setup(const void* target_module,
|
|
|
| relative_jump_ = 0;
|
| 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());
|
|
|
|
|