Add the missing HAVE_GETPAGESIZE check in get_view
This commit is contained in:
parent
fe9057895e
commit
b677c4562d
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue