| Index: chrome/installer/util/google_chrome_distribution.cc
|
| ===================================================================
|
| --- chrome/installer/util/google_chrome_distribution.cc (revision 70414)
|
| +++ chrome/installer/util/google_chrome_distribution.cc (working copy)
|
| @@ -447,7 +447,7 @@
|
| std::wstring result;
|
| std::wstring brand_value;
|
| if (client_state_key.ReadValue(google_update::kRegRLZBrandField,
|
| - &brand_value)) {
|
| + &brand_value) == ERROR_SUCCESS) {
|
| result = google_update::kRegRLZBrandField;
|
| result.append(L"=");
|
| result.append(brand_value);
|
| @@ -456,7 +456,7 @@
|
|
|
| std::wstring client_value;
|
| if (client_state_key.ReadValue(google_update::kRegClientField,
|
| - &client_value)) {
|
| + &client_value) == ERROR_SUCCESS) {
|
| result.append(google_update::kRegClientField);
|
| result.append(L"=");
|
| result.append(client_value);
|
|
|