diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-05-29 19:39:55 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-05-29 19:39:55 +0000 |
commit | aae3ec6244d64da47a6f52d1165f9dbf9723fcd9 (patch) | |
tree | fc278a27fe3e23ea2d525032ed88cc401fb737c1 /pkg/abi | |
parent | 1e5ef104e08a9ddc49608d852328d86d85804ee6 (diff) | |
parent | ccf69bdd7e05a4e5f404fbef89a7f49f218645e2 (diff) |
Merge release-20200522.0-33-gccf69bdd (automated)
Diffstat (limited to 'pkg/abi')
-rw-r--r-- | pkg/abi/linux/linux_abi_autogen_unsafe.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/abi/linux/linux_abi_autogen_unsafe.go b/pkg/abi/linux/linux_abi_autogen_unsafe.go index ad7ab0065..23417c1f3 100644 --- a/pkg/abi/linux/linux_abi_autogen_unsafe.go +++ b/pkg/abi/linux/linux_abi_autogen_unsafe.go @@ -204,7 +204,7 @@ func (s *Statx) CopyIn(task marshal.Task, addr usermem.Addr) (int, error) { // WriteTo implements io.WriterTo.WriteTo. func (s *Statx) WriteTo(w io.Writer) (int64, error) { - if !s.Btime.Packed() && s.Ctime.Packed() && s.Mtime.Packed() && s.Atime.Packed() { + if !s.Ctime.Packed() && s.Mtime.Packed() && s.Atime.Packed() && s.Btime.Packed() { // Type Statx doesn't have a packed layout in memory, fall back to MarshalBytes. buf := make([]byte, s.SizeBytes()) s.MarshalBytes(buf) |