diff options
-rwxr-xr-x | chrome/app/google_update_client.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/chrome/app/google_update_client.cc b/chrome/app/google_update_client.cc index aa12dad..1c8c2df 100755 --- a/chrome/app/google_update_client.cc +++ b/chrome/app/google_update_client.cc @@ -117,8 +117,7 @@ bool GoogleUpdateClient::Init(const wchar_t* client_guid, ret = true; } else { std::wstring key(google_update::kRegPathClients); - key.append(L"\\"); - key.append(guid_); + key.append(L"\\" + guid_); if (client_util::GetChromiumVersion(dll_path_, key.c_str(), &version_)) ret = true; } @@ -130,4 +129,3 @@ bool GoogleUpdateClient::Init(const wchar_t* client_guid, return ret; } } // namespace google_update - |