Commit 769be209 authored by zelidrag's avatar zelidrag Committed by Commit bot

Added check for valid account cookies in /ListAccounts result processing.

BUG=414956
TEST=manual

Review URL: https://codereview.chromium.org/551373009

Cr-Commit-Position: refs/heads/master@{#295208}
parent 20e0b1a5
......@@ -312,7 +312,7 @@ void OAuth2LoginManager::OnListAccountsSuccess(const std::string& data) {
accounts.begin();
iter != accounts.end(); ++iter) {
if (gaia::CanonicalizeEmail(iter->first) == user_email) {
found = true;
found = iter->second;
break;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment