| Index: chrome/installer/setup/install_worker.cc
|
| diff --git a/chrome/installer/setup/install_worker.cc b/chrome/installer/setup/install_worker.cc
|
| index 5217bc9a462283f8cdbb44ae032772bfece0ffae..5878c00439e338b422250972c0fa50ccb7bf8aa1 100644
|
| --- a/chrome/installer/setup/install_worker.cc
|
| +++ b/chrome/installer/setup/install_worker.cc
|
| @@ -365,7 +365,7 @@ void AddChromeWorkItems(const InstallationState& original_state,
|
| // Note that we pass true for check_duplicates to avoid failing on in-use
|
| // repair runs if the current_version is the same as the new_version.
|
| bool check_for_duplicates = (current_version &&
|
| - current_version->Equals(new_version));
|
| + *current_version == new_version);
|
| install_list->AddMoveTreeWorkItem(
|
| src_path.AppendASCII(new_version.GetString()).value(),
|
| target_path.AppendASCII(new_version.GetString()).value(),
|
|
|