diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-04-10 22:51:39 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-04-10 22:51:39 +0000 |
commit | 43c49fc5896f022b207b07da85f904cedd14d57e (patch) | |
tree | 06fcf258cb5055a0307f55dfbbb5e04981386223 /pkg/sentry/fs/gofer | |
parent | 662290db1f03ee2a8a9c23b8922406b1f5731ecb (diff) | |
parent | 96f914295920404e7c5c97553771e09b31f6900a (diff) |
Merge release-20200323.0-128-g96f9142 (automated)
Diffstat (limited to 'pkg/sentry/fs/gofer')
-rw-r--r-- | pkg/sentry/fs/gofer/inode.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/fs/gofer/inode.go b/pkg/sentry/fs/gofer/inode.go index 811e8ea30..a016c896e 100644 --- a/pkg/sentry/fs/gofer/inode.go +++ b/pkg/sentry/fs/gofer/inode.go @@ -273,7 +273,7 @@ func (i *inodeFileState) recreateReadHandles(ctx context.Context, writer *handle // operations on the old will see the new data. Then, make the new handle take // ownereship of the old FD and mark the old readHandle to not close the FD // when done. - if err := syscall.Dup3(h.Host.FD(), i.readHandles.Host.FD(), 0); err != nil { + if err := syscall.Dup3(h.Host.FD(), i.readHandles.Host.FD(), syscall.O_CLOEXEC); err != nil { return err } |