| Index: base/time/time_win.cc
|
| diff --git a/base/time/time_win.cc b/base/time/time_win.cc
|
| index 93f0c25e2c4e2227c86d156cefd716a96fe3a4ff..cf7be687d2e5a0b292414796f1b3c25e2535f518 100644
|
| --- a/base/time/time_win.cc
|
| +++ b/base/time/time_win.cc
|
| @@ -251,7 +251,7 @@ void Time::Explode(bool is_local, Exploded* exploded) const {
|
| // FILETIME in local time if necessary.
|
| bool success = true;
|
| // FILETIME in SYSTEMTIME (exploded).
|
| - SYSTEMTIME st;
|
| + SYSTEMTIME st = {0};
|
| if (is_local) {
|
| SYSTEMTIME utc_st;
|
| // We don't use FileTimeToLocalFileTime here, since it uses the current
|
|
|