summaryrefslogtreecommitdiffstats
path: root/chrome_frame
diff options
context:
space:
mode:
Diffstat (limited to 'chrome_frame')
-rw-r--r--chrome_frame/urlmon_url_request.cc2
-rw-r--r--chrome_frame/utils.cc2
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;