diff options
author | kuchhal@chromium.org <kuchhal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-23 00:03:45 +0000 |
---|---|---|
committer | kuchhal@chromium.org <kuchhal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-23 00:03:45 +0000 |
commit | 1e11b171293a31d64523402fe8fdf3a8074bc695 (patch) | |
tree | 3a9a41754dd93a2002f8d1b48324a1dff0cdb25b /chrome_frame | |
parent | a701e5ad76729b657a80d5f4c0c4395a00b94d23 (diff) | |
download | chromium_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 'chrome_frame')
-rw-r--r-- | chrome_frame/urlmon_url_request.cc | 2 | ||||
-rw-r--r-- | chrome_frame/utils.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome_frame/urlmon_url_request.cc b/chrome_frame/urlmon_url_request.cc index efbb260..4d91607 100644 --- a/chrome_frame/urlmon_url_request.cc +++ b/chrome_frame/urlmon_url_request.cc @@ -367,7 +367,7 @@ STDMETHODIMP UrlmonUrlRequest::OnResponse(DWORD dwResponseCode, InternetGetCookie(url_for_persistent_cookies.c_str(), NULL, NULL, &cookie_size); if (cookie_size) { - scoped_ptr<wchar_t> cookies(new wchar_t[cookie_size + 1]); + scoped_array<wchar_t> cookies(new wchar_t[cookie_size + 1]); if (!InternetGetCookie(url_for_persistent_cookies.c_str(), NULL, cookies.get(), &cookie_size)) { NOTREACHED() << "InternetGetCookie failed. Error: " << GetLastError(); diff --git a/chrome_frame/utils.cc b/chrome_frame/utils.cc index 246fa0d..fdcb7c7 100644 --- a/chrome_frame/utils.cc +++ b/chrome_frame/utils.cc @@ -361,7 +361,7 @@ bool GetModuleVersion(HMODULE module, uint32* high, uint32* low) { if (readonly_resource_data && version_resource_size) { // Copy data as VerQueryValue tries to modify the data. This causes // exceptions and heap corruption errors if debugger is attached. - scoped_ptr<char> data(new char[version_resource_size]); + scoped_array<char> data(new char[version_resource_size]); memcpy(data.get(), readonly_resource_data, version_resource_size); if (data.get()) { VS_FIXEDFILEINFO* ver_info = NULL; |