diff options
Diffstat (limited to 'sandbox/win/src/service_resolver_32.cc')
-rw-r--r-- | sandbox/win/src/service_resolver_32.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sandbox/win/src/service_resolver_32.cc b/sandbox/win/src/service_resolver_32.cc index 3497516..2e69dbc 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()); |