diff options
Diffstat (limited to 'chrome/installer/setup/uninstall.cc')
-rw-r--r-- | chrome/installer/setup/uninstall.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/installer/setup/uninstall.cc b/chrome/installer/setup/uninstall.cc index 2d19ca4..f8c0482 100644 --- a/chrome/installer/setup/uninstall.cc +++ b/chrome/installer/setup/uninstall.cc @@ -72,7 +72,7 @@ bool CurrentUserHasDefaultBrowser(bool system_uninstall) { std::wstring reg_key(ShellUtil::kRegStartMenuInternet); BrowserDistribution* dist = BrowserDistribution::GetDistribution(); reg_key.append(L"\\" + dist->GetApplicationName() + ShellUtil::kRegShellOpen); - RegKey key(HKEY_LOCAL_MACHINE, reg_key.c_str()); + RegKey key(HKEY_LOCAL_MACHINE, reg_key.c_str(), KEY_READ); std::wstring reg_exe; if (key.ReadValue(L"", ®_exe) && reg_exe.length() > 2) { std::wstring chrome_exe = installer::GetChromeInstallPath(system_uninstall); |