Index: sandbox/win/src/interception.cc |
diff --git a/sandbox/win/src/interception.cc b/sandbox/win/src/interception.cc |
index 8def6e8daa01d5c65f9b68d252eb0d69553c9a0f..8c897a1a977c0e4798a850e81efa125405518ebb 100644 |
--- a/sandbox/win/src/interception.cc |
+++ b/sandbox/win/src/interception.cc |
@@ -120,7 +120,7 @@ bool InterceptionManager::InitializeInterceptions() { |
return true; // Nothing to do here |
size_t buffer_bytes = GetBufferSize(); |
- scoped_array<char> local_buffer(new char[buffer_bytes]); |
+ scoped_ptr<char[]> local_buffer(new char[buffer_bytes]); |
if (!SetupConfigBuffer(local_buffer.get(), buffer_bytes)) |
return false; |