diff options
author | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-14 01:06:28 +0000 |
---|---|---|
committer | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-14 01:06:28 +0000 |
commit | 4f64d1bb33b0a9401e04d3ce83837e7fcccef722 (patch) | |
tree | 931e87d4393ce459cc061c2d5ed0b3c5980e455c | |
parent | 1fbfdc0a08590ccffef2baef9f36b71e70d08b7d (diff) | |
download | chromium_src-4f64d1bb33b0a9401e04d3ce83837e7fcccef722.zip chromium_src-4f64d1bb33b0a9401e04d3ce83837e7fcccef722.tar.gz chromium_src-4f64d1bb33b0a9401e04d3ce83837e7fcccef722.tar.bz2 |
fix broken tree and an actual bug. thanks clanck
BUG=89248
TEST=none
TBR=thakis
Review URL: http://codereview.chromium.org/7361009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92459 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/common/chrome_paths.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc index 478eda7..bd701f4 100644 --- a/chrome/common/chrome_paths.cc +++ b/chrome/common/chrome_paths.cc @@ -93,7 +93,7 @@ bool GetInternalPluginsDirectory(FilePath* result) { bool GetPepperFlashDirectory(FilePath* result) { if (!GetInternalPluginsDirectory(result)) return false; - result->Append(kPepperFlashBaseDirectory); + *result = result->Append(kPepperFlashBaseDirectory); Version latest("0.0"); bool found = false; file_util::FileEnumerator |