diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-08-27 18:52:35 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-08-27 18:52:35 +0000 |
commit | fc3fe511ae13663d768b64734a64810af8bc03ab (patch) | |
tree | 59094c9e3622b39eb77b5e55cb9131e62f5e58c7 /pkg/sentry/loader | |
parent | 0e4f2c8ca5b2df123e30bbe918cf09fcbe6c854f (diff) | |
parent | 9679f9891fe524647d5027a3cfb9c892604df064 (diff) |
Merge 9679f989 (automated)
Diffstat (limited to 'pkg/sentry/loader')
-rw-r--r-- | pkg/sentry/loader/elf.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/loader/elf.go b/pkg/sentry/loader/elf.go index bc5b841fb..ba9c9ce12 100644 --- a/pkg/sentry/loader/elf.go +++ b/pkg/sentry/loader/elf.go @@ -464,7 +464,7 @@ func loadParsedELF(ctx context.Context, m *mm.MemoryManager, f *fs.File, info el // base address big enough to fit all segments, so we first create a // mapping for the total size just to find a region that is big enough. // - // It is safe to unmap it immediately with racing with another mapping + // It is safe to unmap it immediately without racing with another mapping // because we are the only one in control of the MemoryManager. // // Note that the vaddr of the first PT_LOAD segment is ignored when |