| Index: components/password_manager/core/browser/login_database.cc
|
| diff --git a/components/password_manager/core/browser/login_database.cc b/components/password_manager/core/browser/login_database.cc
|
| index 0cc76ff353d7e289c6516e5d8be8550bb6b9061a..d4e913cd7685f159ad0be44805ebfe05b9d6e9e5 100644
|
| --- a/components/password_manager/core/browser/login_database.cc
|
| +++ b/components/password_manager/core/browser/login_database.cc
|
| @@ -1063,8 +1063,11 @@ LoginDatabase::EncryptionResult LoginDatabase::InitPasswordFormFromStatement(
|
| base::string16 decrypted_password;
|
| EncryptionResult encryption_result =
|
| DecryptedString(encrypted_password, &decrypted_password);
|
| - if (encryption_result != ENCRYPTION_RESULT_SUCCESS)
|
| + if (encryption_result != ENCRYPTION_RESULT_SUCCESS) {
|
| + VLOG(0) << "Password decryption failed, encryption_result is "
|
| + << encryption_result;
|
| return encryption_result;
|
| + }
|
|
|
| std::string tmp = s.ColumnString(COLUMN_ORIGIN_URL);
|
| form->origin = GURL(tmp);
|
|
|