| Index: chrome/browser/password_manager/password_store_mac.cc
|
| diff --git a/chrome/browser/password_manager/password_store_mac.cc b/chrome/browser/password_manager/password_store_mac.cc
|
| index 63dca04ff7d065131de170d116e784a6f6415846..9fb630ccd71ad12ded8ba653d43996695d4b90bd 100644
|
| --- a/chrome/browser/password_manager/password_store_mac.cc
|
| +++ b/chrome/browser/password_manager/password_store_mac.cc
|
| @@ -299,8 +299,8 @@ bool TimeFromKeychainTimeString(const char* time_string_bytes,
|
| free(time_string);
|
|
|
| if (assignments == 6) {
|
| - *time = base::Time::FromUTCExploded(exploded_time);
|
| - return true;
|
| + if (base::Time::FromUTCExploded(exploded_time, time))
|
| + return true;
|
| }
|
| return false;
|
| }
|
|
|