Add the missing HAVE_GETPAGESIZE check in get_view

This commit is contained in:
H.J. Lu 2015-02-10 05:46:38 -08:00
parent fe9057895e
commit b677c4562d
1 changed files with 4 additions and 0 deletions

View File

@ -529,9 +529,13 @@ get_view (const void *handle, const void **viewp)
size += bias;
# endif
buffer = mmap (NULL, size, PROT_READ, MAP_PRIVATE, input->fd, offset);
# if HAVE_GETPAGESIZE
if (buffer != MAP_FAILED)
buffer += bias;
else
# else
if (buffer == MAP_FAILED)
# endif
#endif
{
char *p;