diff options
author | Shylender Gaddamwar <c_shylen@quicinc.com> | 2009-10-05 11:00:26 -0700 |
---|---|---|
committer | Shylender Gaddamwar <c_shylen@quicinc.com> | 2009-10-05 11:00:26 -0700 |
commit | dce33c3a81a3e06072c6b5b855ee06d43fc272db (patch) | |
tree | 55173212f18cacb10fd5355cd53171763e30b623 /linker/linker.c | |
parent | e984c60716eeac062736d5961d9f48248ad7bfa1 (diff) | |
parent | 5cef9a85b8763e1ea00ae65256e20d1377d5d27f (diff) | |
download | bionic-dce33c3a81a3e06072c6b5b855ee06d43fc272db.zip bionic-dce33c3a81a3e06072c6b5b855ee06d43fc272db.tar.gz bionic-dce33c3a81a3e06072c6b5b855ee06d43fc272db.tar.bz2 |
Merge branch 'donut_au409' into donut_glazed01Q8650BSDCANLYA320004
Diffstat (limited to 'linker/linker.c')
-rw-r--r-- | linker/linker.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linker/linker.c b/linker/linker.c index 292cf46..789a828 100644 --- a/linker/linker.c +++ b/linker/linker.c @@ -698,7 +698,7 @@ get_lib_extents(int fd, const char *name, void *__hdr, unsigned *total_sz) static int reserve_mem_region(soinfo *si) { void *base = mmap((void *)si->base, si->size, PROT_READ | PROT_EXEC, - MAP_PRIVATE | MAP_FIXED | MAP_ANONYMOUS, -1, 0); + MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); if (base == MAP_FAILED) { DL_ERR("%5d can NOT map (%sprelinked) library '%s' at 0x%08x " "as requested, will try general pool: %d (%s)", |