diff options
author | Fabricio Voznika <fvoznika@google.com> | 2020-02-04 11:47:41 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-02-04 11:48:36 -0800 |
commit | dcffddf0cae026411e7e678744a1e39dc2b513cf (patch) | |
tree | 69aef160d054425039e1f772e5c6b0b2654f71b5 /pkg/sentry/fsimpl/testutil | |
parent | 492229d0176c1af2ab4ea4cf91bf211e940b5b12 (diff) |
Remove argument from vfs.MountNamespace.DecRef()
Updates #1035
PiperOrigin-RevId: 293194631
Diffstat (limited to 'pkg/sentry/fsimpl/testutil')
-rw-r--r-- | pkg/sentry/fsimpl/testutil/testutil.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/fsimpl/testutil/testutil.go b/pkg/sentry/fsimpl/testutil/testutil.go index 1c98335c1..69fd84ddd 100644 --- a/pkg/sentry/fsimpl/testutil/testutil.go +++ b/pkg/sentry/fsimpl/testutil/testutil.go @@ -98,7 +98,7 @@ func (s *System) WithTemporaryContext(ctx context.Context) *System { // Destroy release resources associated with a test system. func (s *System) Destroy() { s.Root.DecRef() - s.mns.DecRef(s.VFS) // Reference on mns passed to NewSystem. + s.mns.DecRef() // Reference on mns passed to NewSystem. } // ReadToEnd reads the contents of fd until EOF to a string. |