| Index: chrome/installer/util/shell_util.cc
|
| diff --git a/chrome/installer/util/shell_util.cc b/chrome/installer/util/shell_util.cc
|
| index 7af6a9a39266a7ffcf6b42169fcb17ea62ccd157..2f7332b46b3e4fe731c920a2f11def3de264c8e9 100644
|
| --- a/chrome/installer/util/shell_util.cc
|
| +++ b/chrome/installer/util/shell_util.cc
|
| @@ -252,7 +252,7 @@ class RegistryEntry {
|
| base::CaseInsensitiveCompare<wchar_t>()));
|
| } else {
|
| DWORD read_value;
|
| - found = (key.ReadValueDW(_name.c_str(), &read_value) == ERROR_SUCCESS) &&
|
| + found = (key.ReadValue(_name.c_str(), &read_value) == ERROR_SUCCESS) &&
|
| (read_value == _int_value);
|
| }
|
| key.Close();
|
| @@ -269,7 +269,7 @@ class RegistryEntry {
|
| found = key.ReadValue(_name.c_str(), &read_value) == ERROR_SUCCESS;
|
| } else {
|
| DWORD read_value;
|
| - found = key.ReadValueDW(_name.c_str(), &read_value) == ERROR_SUCCESS;
|
| + found = key.ReadValue(_name.c_str(), &read_value) == ERROR_SUCCESS;
|
| }
|
| key.Close();
|
| return found;
|
|
|