summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/kernel/fasync/fasync.go
diff options
context:
space:
mode:
authorAdin Scannell <ascannell@google.com>2018-07-19 15:48:08 -0700
committerShentubot <shentubot@google.com>2018-07-19 15:48:56 -0700
commit8b8aad91d581ee5f600f5ec0b7fb407b36d07db1 (patch)
tree30865cd066380339cc4087bd622f31df86965c08 /pkg/sentry/kernel/fasync/fasync.go
parentbe431d0934b8d33dcb1909527e0f9ed7eb504b6f (diff)
kernel: mutations on creds now require a copy.
PiperOrigin-RevId: 205315612 Change-Id: I9a0a1e32c8abfb7467a38743b82449cc92830316
Diffstat (limited to 'pkg/sentry/kernel/fasync/fasync.go')
-rw-r--r--pkg/sentry/kernel/fasync/fasync.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/kernel/fasync/fasync.go b/pkg/sentry/kernel/fasync/fasync.go
index 028d6766f..15218fb5a 100644
--- a/pkg/sentry/kernel/fasync/fasync.go
+++ b/pkg/sentry/kernel/fasync/fasync.go
@@ -35,7 +35,7 @@ func New() fs.FileAsync {
type FileAsync struct {
mu sync.Mutex
e waiter.Entry
- requester auth.Credentials
+ requester *auth.Credentials
// Only one of the following is allowed to be non-nil.
recipientPG *kernel.ProcessGroup