| Index: chrome/installer/util/google_chrome_distribution.cc
|
| ===================================================================
|
| --- chrome/installer/util/google_chrome_distribution.cc (revision 70917)
|
| +++ chrome/installer/util/google_chrome_distribution.cc (working copy)
|
| @@ -448,7 +448,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);
|
| @@ -457,7 +457,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);
|
|
|