| Index: content/zygote/zygote_main_linux.cc
|
| diff --git a/content/zygote/zygote_main_linux.cc b/content/zygote/zygote_main_linux.cc
|
| index 3dc64ecd371410a5147e613db39b816b72b76c24..c5860e4052c9fff015fc8edac9f8013c711fcf4c 100644
|
| --- a/content/zygote/zygote_main_linux.cc
|
| +++ b/content/zygote/zygote_main_linux.cc
|
| @@ -134,8 +134,8 @@
|
| Pickle reply(reinterpret_cast<char*>(reply_buf), r);
|
| PickleIterator iter(reply);
|
| std::string result, timezone;
|
| - if (!iter.ReadString(&result) ||
|
| - !iter.ReadString(&timezone) ||
|
| + if (!reply.ReadString(&iter, &result) ||
|
| + !reply.ReadString(&iter, &timezone) ||
|
| result.size() != sizeof(struct tm)) {
|
| memset(output, 0, sizeof(struct tm));
|
| return;
|
|
|