diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-06 18:41:28 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-06 18:41:28 +0000 |
commit | 0dacb002b623433cd1775a9efeb165c3e07ddd37 (patch) | |
tree | 1481918d2478febbf1b34e933ca1e1fe07d87b43 /chrome_frame/utils.cc | |
parent | 84ed624e9ec268cd808dc47d7bf636785c9ae163 (diff) | |
download | chromium_src-0dacb002b623433cd1775a9efeb165c3e07ddd37.zip chromium_src-0dacb002b623433cd1775a9efeb165c3e07ddd37.tar.gz chromium_src-0dacb002b623433cd1775a9efeb165c3e07ddd37.tar.bz2 |
In the GetIETemporaryFilesFolder helper function in ChromeFrame we should not be freeing the relative pidl. It is
a pointer into the absolute pidl. Thanks to Tommi for pointing this out.
Bug=none
Review URL: http://codereview.chromium.org/1568017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43734 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/utils.cc')
-rw-r--r-- | chrome_frame/utils.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/chrome_frame/utils.cc b/chrome_frame/utils.cc index e018568..d314a24 100644 --- a/chrome_frame/utils.cc +++ b/chrome_frame/utils.cc @@ -435,8 +435,6 @@ FilePath GetIETemporaryFilesFolder() { ScopedBstr temp_internet_files_bstr; StrRetToBSTR(&path, relative_pidl, temp_internet_files_bstr.Receive()); FilePath temp_internet_files(static_cast<BSTR>(temp_internet_files_bstr)); - - ILFree(relative_pidl); ILFree(tif_pidl); return temp_internet_files; } else { |