summaryrefslogtreecommitdiffstats
path: root/sandbox/src/service_resolver.cc
diff options
context:
space:
mode:
authorkuchhal@chromium.org <kuchhal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-23 00:03:45 +0000
committerkuchhal@chromium.org <kuchhal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-23 00:03:45 +0000
commit1e11b171293a31d64523402fe8fdf3a8074bc695 (patch)
tree3a9a41754dd93a2002f8d1b48324a1dff0cdb25b /sandbox/src/service_resolver.cc
parenta701e5ad76729b657a80d5f4c0c4395a00b94d23 (diff)
downloadchromium_src-1e11b171293a31d64523402fe8fdf3a8074bc695.zip
chromium_src-1e11b171293a31d64523402fe8fdf3a8074bc695.tar.gz
chromium_src-1e11b171293a31d64523402fe8fdf3a8074bc695.tar.bz2
Use scoped_array (not scoped_ptr) with new[].
BUG=24266 TEST=No functional change so make sure nothing changes. Review URL: http://codereview.chromium.org/307045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29843 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox/src/service_resolver.cc')
-rw-r--r--sandbox/src/service_resolver.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sandbox/src/service_resolver.cc b/sandbox/src/service_resolver.cc
index 2fae55a..9cdd824 100644
--- a/sandbox/src/service_resolver.cc
+++ b/sandbox/src/service_resolver.cc
@@ -147,7 +147,7 @@ NTSTATUS ServiceResolverThunk::Setup(const void* target_module,
return ret;
size_t thunk_bytes = GetThunkSize();
- scoped_ptr<char> thunk_buffer(new char[thunk_bytes]);
+ scoped_array<char> thunk_buffer(new char[thunk_bytes]);
ServiceFullThunk* thunk = reinterpret_cast<ServiceFullThunk*>(
thunk_buffer.get());