diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-08-25 16:27:34 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-08-25 16:27:34 +0000 |
commit | 1b7a0ea386ca7ae45dc73b27cfb1afc3c27af548 (patch) | |
tree | 06523e557daf0ef090fd3dc7977b605ed7fa25eb /pkg/sentry/syscalls | |
parent | b4b7accd934e853384bc896b9c7e388162b8ca29 (diff) | |
parent | 46485f9d473b849e3780af8b757244dde3deacf9 (diff) |
Merge release-20200818.0-40-g46485f9d4 (automated)
Diffstat (limited to 'pkg/sentry/syscalls')
-rw-r--r-- | pkg/sentry/syscalls/linux/vfs2/vfs2_abi_autogen_unsafe.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/sentry/syscalls/linux/vfs2/vfs2_abi_autogen_unsafe.go b/pkg/sentry/syscalls/linux/vfs2/vfs2_abi_autogen_unsafe.go index 372fbcd8e..ed5e48eaa 100644 --- a/pkg/sentry/syscalls/linux/vfs2/vfs2_abi_autogen_unsafe.go +++ b/pkg/sentry/syscalls/linux/vfs2/vfs2_abi_autogen_unsafe.go @@ -94,7 +94,7 @@ func (s *sigSetWithSize) CopyIn(task marshal.Task, addr usermem.Addr) (int, erro } // WriteTo implements io.WriterTo.WriteTo. -func (s *sigSetWithSize) WriteTo(w io.Writer) (int64, error) { +func (s *sigSetWithSize) WriteTo(writer io.Writer) (int64, error) { // Construct a slice backed by dst's underlying memory. var buf []byte hdr := (*reflect.SliceHeader)(unsafe.Pointer(&buf)) @@ -102,7 +102,7 @@ func (s *sigSetWithSize) WriteTo(w io.Writer) (int64, error) { hdr.Len = s.SizeBytes() hdr.Cap = s.SizeBytes() - length, err := w.Write(buf) + length, err := writer.Write(buf) // Since we bypassed the compiler's escape analysis, indicate that s // must live until the use above. runtime.KeepAlive(s) |