| Index: google_apis/gaia/gaia_auth_util.cc
|
| diff --git a/google_apis/gaia/gaia_auth_util.cc b/google_apis/gaia/gaia_auth_util.cc
|
| index f81b430b4625af5b39d79e3243b2f2348e3a59f0..93b449690dda9797105d5c6bce7f7662094d0cc6 100644
|
| --- a/google_apis/gaia/gaia_auth_util.cc
|
| +++ b/google_apis/gaia/gaia_auth_util.cc
|
| @@ -168,8 +168,8 @@ bool ParseListAccountsData(const std::string& data,
|
| listed_account.valid = is_email_valid != 0;
|
| listed_account.signed_out = signed_out != 0;
|
| listed_account.raw_email = email;
|
| - auto list = listed_account.signed_out ? signed_out_accounts :
|
| - accounts;
|
| + auto* list =
|
| + listed_account.signed_out ? signed_out_accounts : accounts;
|
| if (list)
|
| list->push_back(listed_account);
|
| }
|
|
|